window.open("*.jsp?dd="+dd+"&cc="+cc+"");
接收:
String dd=request.getParameter("dd");
String cc=request.getParameter("cc");

解决方案 »

  1.   

    你可以带你的页面里面定义两个变量
    dd,cc然后 window.open(dd.htm) 在dd.html里面可以通过window.opener.dd  访问:dd
      

  2.   

    在旧窗口中:window.open(dd.htm)
    在新窗口:document.write dd 
      

  3.   

    可以使用location.href来得到
    url?dd=55&cc=66
    然后在自己分割
      

  4.   

    发送:
    window.open("*.asp?dd=aaa1234&cc=1234abcd);
    接收:
    <%
    //....
    dim redd,recc
    redd=request.QueryString("dd"); //此时redd=aaa1234
    recc=request.QueryString("cc"); //此时recc=1234abcd
    //....
    %>