Skip to content

Instantly share code, notes, and snippets.

@willwei
Last active December 27, 2015 10:48
Show Gist options
  • Save willwei/7313432 to your computer and use it in GitHub Desktop.
Save willwei/7313432 to your computer and use it in GitHub Desktop.
javascript 判断IE6/7/8

#无框架支持 var isIE = !! window.ActiveXObject; var isIE6 = isIE && !window.XMLHttpRequest; var isIE8 = isIE && !! document.documentMode && (document.documentMode == 8); var isIE7 = isIE && !isIE6 && !isIE8;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment