和編程語言類似,這里的表達式還支持大于(gt)、小于(lt)、 與或非 等操作符,條件注釋是 IE5.0 以上版本所特有的一種對注釋的擴展,其它瀏覽器不支持。
[if IE] 判斷是否IE
[if IE 7] 判斷是否是IE7
[if !IE] 判斷是否不是IE
[if lt IE 5.5] 判斷是否是IE5.5 以下版本。 (<)
[if lte IE 6] 判斷是否等于IE6 版本或者以下 (<=)
[if gt IE 5] 判斷是否IE5以上版本 (> )
[if gte IE 7] 判斷是否 IE7 版本或者以上
[if !(IE 7)] 判斷是否不是IE7
[if (gt IE 5)&(lt IE 7)] 判斷是否大于IE5, 小于IE7
[if (IE 6)|(IE 7)] 判斷是否IE6 或者 IE7
下面是判斷IE版本的綜合示例代碼:
<!--[if IE]>
You are using Internet Explorer.
<![endif]-->
<!--[if !IE]-->
You are not using Internet Explorer.
<!--[endif]-->
<!--[if IE 7]>
Welcome to Internet Explorer 7!
<![endif]-->
<!--[if !(IE 7)]>
You are not using version 7.
<![endif]-->
<!--[if gte IE 7]>
You are using IE 7 or greater.
<![endif]-->
<!--[if (IE 5)]>
You are using IE 5 (any version).
<![endif]-->
<!--[if (gte IE 5.5)&(lt IE 7)]>
You are using IE 5.5 or IE 6.
<![endif]-->
<!--[if lt IE 5.5]>
Please upgrade your version of Internet Explorer.
<![endif]-->對于<!–[if expression]> HTML <![endif]–>,非 IE 瀏覽器會當作注釋內容,不顯示;對于 <!–[if expression]–> HTML <!–[endif]–>,非 IE 瀏覽器瀏覽器會當作普通代碼段顯示。
<!--[if expression]--> HTML <!--[endif]--> <!--[if expression]> HTML <![endif]-->