Last active
February 7, 2017 03:29
-
-
Save Go7hic/223ec2207f8bd3f8ef5e to your computer and use it in GitHub Desktop.
判断ie浏览器 #tags: IE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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