您现在的位置:首页 --> JavaScript --> 用JavaScript判断IE版本号
用JavaScript判断IE版本号
浏览:2136次 出处信息
网上抄来的,找不到原文链接了。望告知。
// ---------------------------------------------------------- // A short snippet for detecting versions of IE in JavaScript // without resorting to user-agent sniffing // ---------------------------------------------------------- // If you're not in IE (or IE version is less than 5) then: // ie === undefined // If you're in IE (>=5) then you can determine which version: // ie === 7; // IE7 // Thus, to detect IE: // if (ie) {} // And to detect the version: // ie === 6 // IE6 // ie > 7 // IE8, IE9 ... // ie < 9 // Anything less than IE9 // ---------------------------------------------------------- // UPDATE: Now using Live NodeList idea from @jdalton var ie = ( function (){ var undef, v = 3, div = document.createElement( 'div' ), all = div.getElementsByTagName( 'i' ); while ( div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->' , all[0] ); return v > 4 ? v : undef; }()); |
建议继续学习:
QQ技术交流群:445447336,欢迎加入!
扫一扫订阅我的微信号:IT技术博客大学习
扫一扫订阅我的微信号:IT技术博客大学习
<< 前一篇:快速清除多选框的已选中状态
后一篇:更好的用vim浏览Javascript代码 >>
文章信息
- 作者:小寒 来源: 记事本
- 标签: 版本号
- 发布时间:2011-05-17 09:01:23
近3天十大热文
- [66] Go Reflect 性能
- [66] Oracle MTS模式下 进程地址与会话信
- [65] 如何拿下简短的域名
- [59] IOS安全–浅谈关于IOS加固的几种方法
- [59] android 开发入门
- [59] 图书馆的世界纪录
- [58] 【社会化设计】自我(self)部分――欢迎区
- [53] 视觉调整-设计师 vs. 逻辑
- [47] 界面设计速成
- [47] 读书笔记-壹百度:百度十年千倍的29条法则