//Pure JavaScript, no framework - NOTE: this must be placed in an onLoad event or after the body has loaded or it will result in an error
if(typeof document.body.style.maxHeight === "undefined") {
alert('IE6 Detected');
}
//jQuery syntax - Note that the browser method is now deprecated in favor of feature detection through the support method
if (($.browser.msie) && ($.browser.version == "6.0")){
alert('IE6 Detected');
}
js判断ie6浏览器
最新推荐文章于 2025-12-05 08:37:05 发布
6960

被折叠的 条评论
为什么被折叠?



