我有2个jquery文件。是否只有IE8或IE9的代码?
<script src=ie8.js></script>
<script src=ie9.js></script>
答案 0 :(得分:5)
试试这个:
<!--[if IE 8]>
<script src=ie8.js></script>
<![endif]-->
<!--[if IE 9]>
<script src=ie9.js></script>
<![endif]-->
答案 1 :(得分:2)
检查IE中的Condition comments。
<!--[if IE 8]>
<script src=ie8.js></script>
<![endif]-->
<!--[if IE 9]>
<script src=ie9.js></script>
<![endif]-->
答案 2 :(得分:1)
<!--[if IE 8]>
<script src=ie8.js></script>
<![endif]-->
<!--[if IE 9]>
<script src=ie9.js></script>
<![endif]-->
答案 3 :(得分:0)
尝试:
<!--[if IE 8]>
<script src="ie.js">
<![endif]-->
<!--[if !IE]>
<script src="all.js">
<!--<![endif]--
答案 4 :(得分:0)
唯一的答案可能是使用IE Conditional Comments!