当我们使用js方法window.close()时,系统会提示是否关闭的提示框,影响客户体验,为了增加用户的客户体验,我们可以用以下方法进行去除。
function Close(){
var ua = navigator.userAgent;
var ie = navigator.appName == "Microsoft Internet Explorer"?true:false;
if(ie){
var IEversion = parseFloat(ua.substring(ua.indexOf("MSIE")+5,ua.indexOf(";",ua.indexOf("MSIE"))));
alert(IEversion);
if(IEversion < 5.5){
var str = "<object id = 'noTipClose' classid='clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11'>";
str += "<param name='Command' value='Close'/></object>";
document.body.insertAdjacentHTML("beforeEnd",str);
document.all.noTipClose.Click();
}else{
window.parent.opener = null;
window.parent.open('','_self','');
window.parent.close();
}
}else{
widow.parent.close();
}
}
转自: http://blog.youkuaiyun.com/starfive66/article/details/5638826