iam使用iframe显示一些内容。在其中一个页面上打开一个应该打印的弹出窗口。关闭此窗口后,它应重定向到开头,但在iframe中。我怎样才能做到这一点?实际上它不在iframe中重定向,它会更改父级。
我的代码
<iframe src="login.php" width="950px" height="600px" frameborder="0">
这是onunload函数,它应该改变iframe的内容。
<script>
window.onunload = function(){
var iframe = opener.parent.querySelector("iframe");
iframe.contentDocument.location.href = "index.html";
// opener.open("index.html");
}
</script>