window.close()不弹出提示框

当我们使用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 = "";
			str += "";
			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.csdn.net/starfive66/article/details/5638826

你可能感兴趣的:(Javascript)