html如何判断浏览器是否为ie,并根据不同的ie版本号编写不同的代码

html断浏览器是否为ie,并根据不同的ie版本号编写不同的代码

<!--[if IE 6]>仅IE6可识别<![endif]-->
<!--[if lte IE 6]> IE6及其以下版本可识别<![endif]-->
<!--[if lt IE 6]> IE6以下版本可识别<![endif]-->
<!--[if gte IE 6]> IE6及其以上版本可识别<![endif]-->
<!--[if gt IE 6]> IE6以上版本可识别<![endif]-->
<!--[if IE]> 所有的IE可识别<![endif]-->
<!--[if !IE]> 除IE外都可识别<![endif]-->

使用案例如下:
下面这段代码的意思就是,如果ie浏览器版本小于9,就引入html5shiv.min.js和respond.min.js这两个文件

<!--[if lt IE 9]>
  <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
<![endif]-->

有这个ie浏览器版本的判断,我们就可以针对不同的浏览器版本编写不同的代码了。

除了html可以判断ie浏览器版本外,js和php也能判断

js如何判断浏览器是否为ie,以及检测ie版本号

php如何判断浏览器是否为ie,以及检测ie版本号

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: