window.close()不出现提示框的方法

当我们使用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.opener = null;
			window.open('','_self','');
			window.close();
		}
	}else{
		widow.close();
	}
	}
 

你可能感兴趣的:(IE,Microsoft)