Javascript刷新父页弹出消息

时间:2016-09-12 17:02:47

标签: javascript internet-explorer popup

我使用JavaScript来关闭弹出窗口并刷新父页面。当我点击"关闭"弹出按钮,来自Internet Explorer的新弹出消息显示出来。我们如何通过不显示Internet Explorer的弹出消息来克服这一点。

我上传图片并不简单但是这是弹出窗口中的消息: "要再次显示网页,网络浏览器需要重新发送您之前提交的信息。

如果您要进行购买,则应单击取消以避免重复交易。否则,请单击“重试”以再次显示网页"。

请找到我在下面使用的代码:

window.onunload = refreshParent;
function refreshParent() {
window.opener.location.reload();
window.close();
}

1 个答案:

答案 0 :(得分:0)

更新您的刷新功能

window.onunload = refreshParent;
function refreshParent() {
    window.opener.location = window.opener.location.href
    window.close();
}