js常用代码

2017-06-29  本文已影响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="">

持续更新中

上一篇 下一篇

猜你喜欢

热点阅读