在html中判断IE浏览器的版本

如何让静态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了 ... :)

相关文章
相关标签/搜索