第一次发帖 帮你写了下a.html的BODY内容
<input type="submit"  id="openW" name="Submit" value="CSDN打开窗口" />
<script  language="javascript" type="text/javascript">
function __open(){
window.open("b.html");
}
document.getElementById("openW").onclick=__open;
</script>
b.html的BODY内容
<select name="select">
  <option value="CSDN">CSDN</option>
  <option value="CSDN">CSDN</option>
  <option value="CSDN">CSDN</option>
</select>
<input type="button" name="Submit" id="__close" value="关 闭" />
<script language="javascript" type="text/javascript">
document.getElementById("__close").onclick=function(){
window.close();
window.opener.location="http://topic.csdn.net/u/20080917/19/0c0bb4d8-55b3-451c-a10e-c84196280f8d.html";
}
</script>

解决方案 »

  1.   

    <body>
    <a href="javascript:void(0);" onclick="show();return false;">点击弹出小窗口 </a>
    <script type="text/javascript">
    var isshow=0;//0小窗口没有显示,1小窗口已显
    $=function (id){return document.getElementById(id);}
    function HR_href()
    {
       var sle=$("select").value;
       if(sle==1)
       window.location.href="1.html";//要跳转的页面地址根据需要自己写
       else if(sle==2)
       window.location.href="2.html";//要跳转的页面地址根据需要自己写
        else if(sle==3)
        window.location.href="3.html";//要跳转的页面地址根据需要自己写
    }
    function creatediv()
    {            
        var msgw,msgh,bordercolor;
        msgw=200;//提示窗口的宽度
        msgh=200;//提示窗口的高度
        var sWidth,sHeight;
        if( top.location == self.location )
            doc = document;
        var docElement = doc.documentElement;
        sWidth=docElement.clientWidth;
        sHeight = docElement.clientHeight;
        if( docElement.scrollHeight > sHeight )
            sHeight = docElement.scrollHeight;
        var bgObj=document.createElement("div");
        bgObj.setAttribute('id','bgDiv');
        bgObj.style.position="absolute";
        bgObj.style.top="0";
        bgObj.style.left="0";
        bgObj.style.background="#777";
        bgObj.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75";
        bgObj.style.opacity="0.6";
        bgObj.style.width=sWidth + "px";
        bgObj.style.height=sHeight + "px";
        bgObj.style.zIndex = "10000";
        document.body.appendChild(bgObj);
             var html="";
            html+='<select name="select" id="select" onchange="HR_href();">'
                 +'<option ></option>'  
                  +'<option value="1">'+'百度'+'</option>' 
                  +'<option value="2">'+'新浪'+ '</option>' 
                  +'<option value="3">'+'google '+ '</option>' 
            html+='</select>';   
        var msgObj=document.createElement("div");
        msgObj.setAttribute("id","msgDiv");
        msgObj.setAttribute("align","center");
        msgObj.style.position = "absolute";
        msgObj.style.left = "40%";
        msgObj.style.background="#fff";
        msgObj.style.marginLeft = "-200px" ;
        msgObj.style.top = (document.documentElement.clientHeight/2+document.documentElement.scrollTop-252)+"px";
        msgObj.style.width = msgw + "px";
        msgObj.style.height =msgh + "px";
        msgObj.style.zIndex = "10001";
        msgObj.innerHTML = "请选择你要跳转页面:"+html+"<br /><a href=\"javascript:void(0);\" onclick='delWinD();return false;'>点我关闭窗口</a>";
        document.body.appendChild(msgObj); 
    }
    function delWinD()
    {
       document.getElementById("bgDiv").style.display="none";
       document.getElementById("msgDiv").style.display="none";
       isshow=0;
    }
    function show()
    {   
        isshow=1;
        if(!document.getElementById("msgDiv"))//小窗口不存在
            creatediv();
        else
        {
            document.getElementById("bgDiv").style.display="";
            document.getElementById("msgDiv").style.display="";
            document.getElementById("msgDiv").style.top=(document.documentElement.clientHeight/2+document.documentElement.scrollTop-252)+"px";
        }  
    }
    </script>
    </body>
      

  2.   

    在子窗口中window.opener.location="xxx";//父窗口跳转的页面地址
    window.close;
      

  3.   

    ===================================
    a.html
    ===================================
    <html>
    <body>
    <form method="get"><!-- 此处用的get方法,方便你在地址栏可以看到数据确定提交了,实际使用时用post -->
    <input name="mytest" />
    <input type="button" onclick="winOpen()" value="CSDN打开窗口" /> 
    </form>
    </body>
    <script> 
    function winOpen(){ 
    window.open("b.html"); 

    </script> 
    </html>===================================
    b.html
    ===================================
    <select id="select"> 
      <option value="CSDN1">CSDN1 </option> 
      <option value="CSDN2">CSDN2 </option> 
      <option value="CSDN3">CSDN3</option> 
    </select> 
    <input type="button" onclick="selectOk()" value="确定" /> 
    <script> 
    function selectOk(){
    window.opener.document.forms[0].mytest.value=select.value//将选的值赋给父窗口里的对象
    window.opener.document.forms[0].submit();//看你用的是jsp应该是要提交的,所以还是用调submit吧
    window.close(); 

    </script>