针对IE浏览器(兼容)写样式----兼容IE9及以上


<div id="putt" style="width: 200px;height: 50px ;border: 1px solid red;">11111</div>
<script language="JavaScript" type="text/javascript">

//判断版本
if(navigator!=null&&navigator!=undefined&&navigator.userAgent!=null&&navigator.userAgent!=undefined){
if(navigator.userAgent.indexOf("MSIE 10.0")>0){
//ie9
alert("你的电脑为IE10")
}else{
alert("你的电脑不为IE10")
}
}
//判断是否为IE
var sfdf=document.getElementById("putt");
if(navigator!=null&&navigator!=undefined&&navigator.userAgent!=null&&navigator.userAgent!=undefined){
if(navigator.userAgent.indexOf('MSIE') >= 0) {
sfdf.style.height="33px";
} else{
sfdf.style.height="63px";
}
}

</script>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM