firefox浏览器不能使用window.close的解决方案
2020-12-13 04:46
标签:style blog http java color 使用 javascript中window.close()函数用来关闭窗体,而且IE、google、firefox浏览均支持,但由于firefox浏览器dom.allow_scripts_to_close_windows参数默认值为false,故close不启作用。 首先在firefox地址栏中输入about:config然后找到dom.allow_scripts_to_close_windows参数设置为true即可,如下图所示: 附 IE、google、firefox通用关闭窗口方法 firefox浏览器不能使用window.close的解决方案,搜素材,soscw.com firefox浏览器不能使用window.close的解决方案 标签:style blog http java color 使用 原文地址:http://www.cnblogs.com/easypass/p/3849605.html function closeWindow() {
var browserName = navigator.appName;
if (browserName == "Netscape") {
window.open(‘‘, ‘_self‘, ‘‘);
window.close();
}
else {
if (browserName == "Microsoft Internet Explorer") {
window.open(‘‘, ‘_parent‘, ‘‘);
window.close();
}
}
}
文章标题:firefox浏览器不能使用window.close的解决方案
文章链接:http://soscw.com/essay/29942.html