Last active
November 26, 2015 02:17
-
-
Save 303182519/3dbf0094e246d6904cd3 to your computer and use it in GitHub Desktop.
检查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
var IE = (function() { | |
if (document.documentMode) { | |
return document.documentMode; | |
} else { | |
for (var i = 7; i > 4; i--) { | |
var div = document.createElement("div"); | |
div.innerHTML = "<!--[if IE " + i + "]><span></span><![endif]-->"; | |
if (div.getElementsByTagName("span").length) { | |
div = null; | |
return i; | |
} | |
} | |
} | |
return undefined; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment