我使用gettopup.com弹出窗口。
在我在php中为重定向提供标题之前,我有以下javascript:
<script language="JavaScript">
window.parent.location.reload();
</script>
这应该刷新父页面而不关闭te弹出窗口,但没有任何反应。 这有什么问题?
答案 0 :(得分:0)
除了.parent()
:
window.opener
<script language="JavaScript">
window.opener.location.reload();
</script>