根据浏览器特性判断 IE7 浏览器 发表于 2011-12-23 | | 阅读次数 12345678910111213141516171819202122232425function isIE() { return document.all ? true : false;}function isIE6() { return typeof document.body.style.maxHeight === 'undefined';}function isIE7(){ if ( !isIE() || isIE6() ) { return false; } else { var xDocumentMode = document.documentMode; var isVersion7 = navigator.appVersion.indexOf('MSIE 7.') > -1; if (isVersion7) { // 检测是否支持 documentMode // 或 documentMode === 7 // IE8兼容性视图 / IE9 下 X-UA-Compatible 为 EmulateIE7,IE7 return xDocumentMode === 7 || !xDocumentMode; } return false; }} 本文作者: IIssNan 本文链接: http://notes.iissnan.com/2011/detecting-ie7-by-features/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN 许可协议。转载请注明出处!