新建父窗口页面: 加入以下脚本 复制代码 代码如下: http://www.w3.org/1999/xhtml" > First <br /> function ShowDialog(Url) <br /> { <br /> var iWidth=560; //模态窗口宽度<br /> var iHeight=300;//模态窗口高度<br /> var iTop=(window.screen.height-iHeight-100)/2;<br /> var iLeft=(window.screen.width-iWidth)/2;<br /> var returnValue=window.showModalDialog(Url, "newwindow", "dialogHeight:"+iHeight+"px; dialogWidth:"+iWidth+"px; toolbar:no; menubar:no; scrollbars:no; resizable:no; location:no; status:no;left:200px;top:100px;");<br /> document.getElementById("TextBox1").innerText=returnValue;<br /> } <br /> 创建second.html页面: 复制代码 代码如下: http://www.w3.org/1999/xhtml" > second <br /> function closeDiag()<br /> {<br /> window.opener=null;<br /> window.close();<br /> } <br /> function OK()<br /> {<br /> var Value=document.getElementsByName("myRadio");<br /> for(var i=0;i<Value.length;i++)<br /> {<br /> if(Value[i].checked)<br /> { <br /> window.returnValue = Value[i].value;<br /> window.close();<br /> }<br /> else<br /> {<br /> document.getElementById("Lab_Info").innerText="没有选中项,请选择!";<br /> }<br /> } <br /> } <br /> BackColor="White" Font-Size="9pt" PageSize="5" Width="100%" Height="127px" OnItemDataBound="dgSjygl_ItemDataBound"> 选择 以上就是本人实现这个简单功能的全部内容了,感觉应该还有更便捷的方法,有知道的小伙伴还请留言说明下。