IE与非IE切换使用方法:

Posted 淡紫色鍀薰衣草

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE与非IE切换使用方法:相关的知识,希望对你有一定的参考价值。

1、IE与非IE

<!--[if !IE]> -->
        <script src="${pageContext.request.contextPath}/static/ace_admin/assets/js/jquery-2.1.4.min.js"></script>
<!-- <![endif]-->
        
<!--  [if IE] -->
       <script src="${pageContext.request.contextPath }/static/js/jquery-1.7.2.js"></script>
       <script src="${pageContext.request.contextPath }/static/js/jquery.dataTables.js"></script>
<!--   ![endif] -->

2、只有IE6版本可见 

<!--[if IE 6]> 
<![endif]-->

3、IE6及其以下版本可见 

<!--[if lte IE 6]> 
<![endif]--> 

4、IE6及其以上版本可见 

<!--[if gte IE 6]> 
<![endif]--> 

5、只有IE7版本可见 

<!--[if IE 7]> 
<![endif]-->

6、IE7及其以下版本可见 

<!--[if lte IE 7]> 
<![endif]--> 

7、IE7及其以上版本可见 

<!--[if gte IE 7]> 
<![endif]--> 

8、只有IE8版本可见 

<!--[if IE 8]> 
<![endif]-->

9、IE8及其以下版本可见 

<!--[if lte IE 8]> 
<![endif]--> 

10、IE8及其以上版本可见 

<!--[if gte IE 8]> 
<![endif]--> 

 

11、除了IE以外的版本 

<![if !IE]> 
<![endif]> 
或者:
<!--[if !IE]> --> 

<!-- <![endif]-->

 

以上是关于IE与非IE切换使用方法:的主要内容,如果未能解决你的问题,请参考以下文章

浏览器IE与非IE区分

js通用方法检測浏览器是否已安装指定插件(IE与非IE通用)

IE浏览器与非IE浏览器JS日期兼容性问题处理

兼容ie8,firefox,chrome浏览器的代码片段

十条实用的jQuery代码片段

30段有用的javascript代码