我有PopUp窗口,转到 upload.jsp ,将文件上传到目录。
上传逻辑用 upload.jsp 编写。我的问题是我想把保存的路径转到父弹出窗口的文本字段。
答案 0 :(得分:2)
子窗口有一个属性opener
,它指的是打开它的窗口。如果他们都来自同一个来源,那么孩子可以像这样访问父母的全局变量:
opener.globalVariable
这意味着它可以opener.document
访问父窗口的文档,因此可以使用opener.document.getElementById
或opener.document.querySelector
来获取父窗口中的元素。
示例:强>
父页面:
<!doctype html>
<html lang="en">
<body>
<input type="text"><input type="button" value="Click me">
<script>
document.querySelector("input[type=text]").value = Math.floor(Math.random() * 10000);
document.querySelector("input[type=button]").addEventListener(
"click",
function() {
var wnd = window.open("popup.html");
},
false
);
</script>
</body>
</html>
弹出页面:
<!doctype html>
<html>
<body>
<script>
var field;
if (!opener) {
display("Not opened as a popup");
} else {
field = opener.document.querySelector("input[type=text]");
display("Value is " + field.value);
}
function display(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
document.body.appendChild(p);
}
</script>
</body>
</html>