function isIE() { //ie?
if (!!window.ActiveXObject || "ActiveXObject" in window)
return true
else
return false
}
if (isIE()) {
if(confirm("为了您的浏览体验,请使用谷歌浏览器!点击确定去下载")){
window.opener=null;
window.open('https://pc.qq.com/detail/1/detail_2661.html','_self');
// window.close();
} else{
window.opener=null;
window.open('','_self');
window.close();
}
}