Skip to content

Instantly share code, notes, and snippets.

@Go7hic
Last active February 7, 2017 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Go7hic/223ec2207f8bd3f8ef5e to your computer and use it in GitHub Desktop.
Save Go7hic/223ec2207f8bd3f8ef5e to your computer and use it in GitHub Desktop.
判断ie浏览器 #tags: IE
//ie9-
var isIE9_ = document.all && !window.atob;
// ie8-
var isIE8_ = document.all && !document.addEventListener;
var isIE8_ = '\v'=='v';
var isIE8_ = !+'\v1';
// ie7-
var isIE7_ = document.all && !document.querySelector;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment