首页 > 其他 > 详细

IE与非IE切换使用方法:

时间:2017-07-06 11:04:47      阅读:249      评论:0      收藏:0      [点我收藏+]

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切换使用方法:

原文:http://www.cnblogs.com/zsy0712/p/7125199.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!