标签:style blog class code java c
其实关键就是window.opener,这个东西就是如何在子窗口页面中,访问父窗口页面的文档的方法,在frame中,是parent、top这类的东西,知道了这个东西,剩下想做点什么就好说了。
父窗口操作子窗口的话,就利用open的返回值就可以了。
father.htm:
<script> function openChild(){ var child = window.open("child.htm"); child.document.getElementById("getValue").value="测试xxx"; } var jsValue="未设置"; function alertValue(){ alert(jsValue); } </script> 我是父页面。 <input type="button" value="打开子页面" onclick="openChild()" /> <div id="someValue"></div> <input type="button" value="显示值" onclick="alertValue()" />
child.htm:
<script> function setFatherValue(){ window.opener.document.getElementById("someValue").innerHTML=document.getElementById("getValue").value; window.opener.jsValue = document.getElementById("getValue").value; } </script> 我是子页面。 <input type="text" id="getValue" value="测试" /><input type="button" value="设置值" onclick="setFatherValue()" />
如何让弹出窗口和页面产生联动?,布布扣,bubuko.com
标签:style blog class code java c
原文地址:http://www.cnblogs.com/xwgli/p/3729016.html