我會記得大雨滂沱,沒有傘的日子
前端QQ群: 981668406
在此附上我的QQ: 2489757828 有問題的話可以一同探討
我的github: 李大玄
我的私人博客: 李大玄
我的簡書: 李大玄
我的CSDN: 李大玄
function closeWindow(){
var userAgent = navigator.userAgent;
if (userAgent.indexOf("Firefox") !== -1 || userAgent.indexOf("Chrome") !== -1) {
window.location.href = "about:blank";
window.close();
} else {
window.opener = null;
window.open("", "_self");
window.close();
}
}