ie瀏覽器版本的html判斷程式碼
阿新 • • 發佈:2019-02-06
瀏覽器版本的判斷程式碼
<!--[if !IE]><!--> 除IE外都可識別 <!--<![endif]--> <!--[if IE]> 所有的IE可識別 <![endif]--> <!--[if IE 5.0]> 只有IE5.0可以識別 <![endif]--> <!--[if IE 5]> 僅IE5.0與IE5.5可以識別 <![endif]--> <!--[if gt IE 5.0]> IE5.0以及IE5.0以上版本都可以識別 <![endif]--> <!--[if IE 6]> 僅IE6可識別 <![endif]--> <!--[if lt IE 6]> IE6以及IE6以下版本可識別 <![endif]--> <!--[if gte IE 6]> IE6以及IE6以上版本可識別 <![endif]--> <!--[if IE 7]> 僅IE7可識別 <![endif]--> <!--[if lt IE 7]> IE7以及IE7以下版本可識別 <![endif]--> <!--[if gte IE 7]> IE7以及IE7以上版本可識別 <![endif]--> <!--[if lte IE 6]>……<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="ie7.css" />
<![endif]-->
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
lte -- 小於等於
lt -- 小於
gte -- 大於等於
gt -- 大於
! -- 不等於