close在firefox有代替的函数吗?
打开一个窗口,然后点击这个窗口上的自定义按钮关闭这个窗口
用:
window.opener = null;
window.close();
或则:
window.open('','_parent','');
window.close();
在firefox都不起作用。为啥?有解决办法吗?
------解决方案--------------------CLOSE只能关闭自己打开的窗口
------解决方案--------------------mark
------解决方案--------------------var popup=window.open('../index/PicView.aspx',"_blank","toolbar=no,menubar=no,width=800,height=600,resizable=no");
popup.close();
------解决方案--------------------Firefox中必须修改设置才能用脚本关闭窗口,方法如下:
在地址栏中输入about:config,找到dom.allow_scripts_to_close_windows项,将其修改为true,重启Firefox。
------解决方案--------------------标准方法:
var w=window.open();
w.close();