发布网友 发布时间:2022-04-23 21:27
共1个回答
热心网友 时间:2022-04-20 22:06
if (window.navigator.userAgent.indexOf("MSIE")>=1)
...{
//如果浏览器为IE
setActiveStyleSheet("ie.css");
} 换成:if (window.navigator.userAgent.indexOf("MSIE 6.0")>=1)
...{
//如果浏览器为IE6
setActiveStyleSheet("ie6.css");
}if (window.navigator.userAgent.indexOf("MSIE 7.0")>=1)
...{
//如果浏览器为IE7
setActiveStyleSheet("ie7.css");
}