弹窗参数回调函数(从子窗口中往父窗口传值)
window.opener.document.getElementById("txtId").value=id;
从父窗口传值给子窗口,如子窗口中有id为T的控件,此时可以用如下传值
newWindow.document.getElementById("T").value="我变了";
关闭窗口时调用的函数
<body οnunlοad="method()">
JS实现关闭当前子窗口,刷新父窗口
<script>
function refreshParent() {
window.opener.location.href = window.opener.location.href;
window.close();
}
</script>
window.opener.document.getElementById("txtId").value=id;
从父窗口传值给子窗口,如子窗口中有id为T的控件,此时可以用如下传值
newWindow.document.getElementById("T").value="我变了";
关闭窗口时调用的函数
<body οnunlοad="method()">
JS实现关闭当前子窗口,刷新父窗口
<script>
function refreshParent() {
window.opener.location.href = window.opener.location.href;
window.close();
}
</script>