首页 > 代码库 > 如何让弹出窗口和页面产生联动?

如何让弹出窗口和页面产生联动?

其实关键就是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()" />