Firefox 默认不允许使用self.close() 来关闭非脚本打开的窗口,提示为:
警告: 不允许脚本关闭非脚本打开的窗口。
所谓脚本打开的窗口,如: window.open(‘about:blank’);
解决办法: window.opener=null;window.close();
DevOps
Firefox 默认不允许使用self.close() 来关闭非脚本打开的窗口,提示为:
警告: 不允许脚本关闭非脚本打开的窗口。
所谓脚本打开的窗口,如: window.open(‘about:blank’);
解决办法: window.opener=null;window.close();