我使用window.open(url,name,properties)
作为popup.html创建了弹出窗口
我想在同一个弹出窗口中加载相同的页面(popup.html)。
但它不允许我关闭弹出窗口。
为什么会这样发生。?
任何回复都非常感谢 编辑:
<script type="text/javascript">
var url = "login.htm?login=true";
var strWindowName ="newWindow";
var strWindowFeatures = "left=0,top=0,width=1200,height=600,location=no,resizable=yes,scrollbars=yes,status=yes";
var windowObjectReference = window.open(url,strWindowName,strWindowFeatures);
this.window.close();
</script>
答案 0 :(得分:0)
我意识到,由于行this.window.close();
,它正在关闭
如果我评论这一行,那么它将导致无限循环的窗口调用。