<div >

//判断版本
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>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2021-12-18
  • 2021-09-02
  • 2022-12-23
猜你喜欢
  • 2021-12-29
  • 2021-08-12
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
相关资源
相似解决方案