如何讓靜態HTML代碼根據不一樣IE版本顯示不一樣內容。 這裏的技巧就是利用IE的HTML註釋表達式。express
HTML 的註釋格式是 <!-- Comment content --> , IE 對HTML註釋作了一些擴展,使之能夠支持條件判斷表達式:編程
<!--[if expression]> HTML <![endif]--> 當表達式expression 爲True 的時候,顯示 HTML 內容。編程語言
例子:ip
view plaincopy to clipboardprint?
<!--[if IE 5]>
<p>Welcome to Internet Explorer 5.</p>
<![endif]-->
<!--[if IE 5]>
<p>Welcome to Internet Explorer 5.</p>
<![endif]-->io
和編程語言相似,這裏的表達式還支持大於(gt)、小於(lt)、 與或非 等操做符。 下面是一些例子。cli
[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
代碼示例:
view plaincopy to clipboardprint?
<!--[if IE]><p>You are using Internet Explorer.</p><![endif]-->
<![if !IE]><p>You are not using Internet Explorer.</p><![endif]>
<!--[if IE 7]><p>Welcome to Internet Explorer 7!</p><![endif]-->
<!--[if !(IE 7)]><p>You are not using version 7.</p><![endif]-->
<!--[if gte IE 7]><p>You are using IE 7 or greater.</p><![endif]-->
<!--[if (IE 5)]><p>You are using IE 5 (any version).</p><![endif]-->
<!--[if (gte IE 5.5)&(lt IE 7)]><p>You are using IE 5.5 or IE 6.</p><![endif]-->
<!--[if lt IE 5.5]><p>Please upgrade your version of Internet Explorer.</p><![endif]-->
<!--[if IE]><p>You are using Internet Explorer.</p><![endif]-->
<![if !IE]><p>You are not using Internet Explorer.</p><![endif]>
<!--[if IE 7]><p>Welcome to Internet Explorer 7!</p><![endif]-->
<!--[if !(IE 7)]><p>You are not using version 7.</p><![endif]-->
<!--[if gte IE 7]><p>You are using IE 7 or greater.</p><![endif]-->
<!--[if (IE 5)]><p>You are using IE 5 (any version).</p><![endif]-->
<!--[if (gte IE 5.5)&(lt IE 7)]><p>You are using IE 5.5 or IE 6.</p><![endif]-->
<!--[if lt IE 5.5]><p>Please upgrade your version of Internet Explorer.</p><![endif]-->
注:IE5 如下的版本不支持這種註釋擴展。 不過如今也很難找到IE4了 ... :)