美文网首页
js常用代码

js常用代码

作者: 九九九玖 | 来源:发表于2017-06-29 16:45 被阅读0次

兼容js关闭窗口不带提示:


function CloseWebPage(){

if (navigator.userAgent.indexOf("MSIE") > 0) {

if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {

window.opener = null;

window.close();

} else {

window.open('', '_top');

window.top.close();

}

}

else if (navigator.userAgent.indexOf("Firefox") > 0) {

window.location.href = 'about:blank ';

} else {

window.opener = null;

window.open('', '_self', '');

window.close();

}

}

h5上传文件夹

<input type="file" id="file_input" multiple="" webkitdirectory="">

持续更新中

相关文章

网友评论

      本文标题:js常用代码

      本文链接:https://www.haomeiwen.com/subject/orzmcxtx.html