方法一:
方法二:
<script> <BR>if(navigator.userAgent.indexOf("MSIE")>0) <BR>{ <BR>//是否是IE浏览器 <BR>if(navigator.userAgent.indexOf("MSIE 6.0")>0) <BR>{ <BR>//6.0 使用1.CSS <BR>Css.innerHTML='<link href="1.css" rel="stylesheet" type="text/css" >' <BR>} <BR>if(navigator.userAgent.indexOf("MSIE 7.0")>0) <BR>{ <BR>//7.0 使用2.CSS <BR>Css.innerHTML='<link href="2.css" rel="stylesheet" type="text/css" >' <BR>} <BR>}else <BR>{ <BR>//否则使用3.CSS 还有具体的浏览器 你可以用navigator.userAgent 去获取信息 具体使用 看你自己 <BR>Css.innerHTML='<link href="3.css" rel="stylesheet" type="text/css" >' <BR>} <BR></script>
方法三: