标签:
IE11或者非IE
if (!document.all) { alert(‘IE11+ or not IE‘); }
IE10
if (document.all && document.addEventListener && window.atob) { alert(‘IE10‘); }
IE9
if (document.all && document.addEventListener && !window.atob) { alert(‘IE9‘); }
IE8
if (document.all && document.querySelector && !document.addEventListener) { alert(‘IE8‘); }
IE7
if (document.all && window.XMLHttpRequest && !document.querySelector) { alert(‘IE7‘); }
IE6
if (document.all && document.compatMode && !window.XMLHttpRequest) { alert(‘IE6‘); }
标签:
原文地址:http://www.cnblogs.com/cnsevennight/p/4236700.html