在HTML代码里面如何判断IE版本

html-css08

在HTML代码里面如何判断IE版本,第1张

如何让静态HTML代码根据不同IE版本显示不同内容。 这里的技巧就是利用IE的HTML注释表达式。

HTML 的注释格式是 <!-- Comment content -->, IE 对HTML注释做了一些扩展,使之可以支持条件判断表达式:

<!--[if expression]>HTML <![endif]--> 当表达式expression 为True 的时候,显示 HTML 内容。

例子:

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]-->

和编程语言类似,这里的表达式还支持大于(gt)、小于(lt)、 与或非 等操作符。 下面是一些例子。

[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 以下的版本不支持这种注释扩展。

HTML代码中,在编写网页代码时,各种浏览器的兼容性是个必须考虑的问题,有些时候无法找到适合所有浏览器的写法,就只能写根据浏览器种类区别的代码,这时就要用到判断代码了。在HTML代码中,区别各种浏览器的代码如下,以ie6为例

<!--[if IE 6]>仅IE6可识别<![endif]-->

<!--[if lte IE 6]>IE6及其以下版本可识别<![endif]-->

<!--[if lt IE 6]>IE6以下版本可识别<![endif]-->

<!--[if gte IE 6]>IE6及其以上版本可识别<![endif]-->

<!--[if gt IE 6]>IE6以上版本可识别<![endif]-->

<!--[if IE]>所有的IE可识别<![endif]-->

以上这些代码写法都是针对ie各版本浏览器的,在其他浏览器中这些代码都会被解释为Html注释而直接无视掉。

<body>

<!--[if IE 6]>

<div>

IE6中才可以看到

</div>

<![endif]-->

<div>

其他

</div>

</body>

所以要想些针对firefox之类的非ie浏览器,需要这么写:<!--[if !IE]><!-->除IE外都可识别<!--<![endif]-->