IE下判断IE版本的语句...[if lte IE 6]……[endif]

来源:互联网 发布:ug8.0编程怎么设置速 编辑:程序博客网 时间:2024/05/16 11:31

<!--[if!IE]><!--> 除IE外都可识别<!--<![endif]-->
<!--[if IE]> 所有的IE可识别<![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 IE 8]> 仅IE8可识别<![endif]-->
<!--[if IE 9]> 仅IE9可识别<![endif]-->

项目范例说明![if !IE]The NOT operator. This is placed immediately in front ofthe featureoperator,or subexpression toreverse the Boolean meaning of the expression.
NOT运算符。这是摆立即在前面的功能操作员,或子表达式扭转布尔表达式的意义。lt[if lt IE 5.5]The less-than operator. Returns true if the first argument isless than the second argument.
小于运算符。如果第一个参数小于第二个参数,则返回true。lte[if lte IE 6]The less-than or equal operator. Returns true if the firstargument is less than or equal to the second argument.
小于或等于运算。如果第一个参数是小于或等于第二个参数,则返回true。gt[if gt IE 5]The greater-than operator. Returns true if the first argumentis greater than the second argument.
大于运算符。如果第一个参数大于第二个参数,则返回true。gte[if gte IE 7]The greater-than or equal operator. Returns true if the firstargument is greater than or equal to the second argument.
大于或等于运算。如果第一个参数是大于或等于第二个参数,则返回true。( )[if !(IE 7)]Subexpression operators. Used in conjunction with booleanoperators to create more complex expressions.
子表达式运营商。在与布尔运算符用于创建更复杂的表达式。&[if (gt IE 5)&(lt IE 7)]The AND operator. Returns true if all subexpressions evaluateto true
AND运算符。如果所有的子表达式计算结果为true,返回true|[if (IE 6)|(IE 7)]The OR operator. Returns true if any of the subexpressionsevaluates to true.
OR运算符。返回true,如果子表达式计算结果为true。

 

 

<!--[if lt IE 9]>
加载CSS1
<!--[else]>
加载CSS2
<![endif]-->

这样有效是有效,但是用HTML VALIDATOR里,报错,因为这个不符合XHTML 1.1的规范,
如果把ELSE语句去掉,则正确.

 

方法1:

加载CSS2
<!--[if lt IE 9]>
加载CSS1(可以把要重写的写在这里).
<![endif]-->


<!--[if lte IE 6]>
<![endif]-->
IE6及其以下版本可见
 
<!--[if lte IE 7]>
<![endif]-->
IE7及其以下版本可见
 
<!--[if IE 6]>
<![endif]-->
只有IE6版本可见
 
<![if !IE]>
<![endif]>
除了IE以外的版本
 
<!--[if lt IE 8]>
<![endif]-->
IE8及其以下的版本可见
 
 
<!--[if gte IE 7]>
<![endif]-->
IE7及其以下的版本可见
 
 
用法:
(1)
可使用如下代码检测当前IE浏览器的版本(注意:在非IE浏览器中是看不到效果的)<!––[if IE]>
      <h1>您正在使用IE浏览器</h1>      <!––[if IE 5]>
          <h2>版本5</h2>      <![endif]––>
      <!––[if IE 5.0]>
          <h2>版本5.0</h2>      <![endif]––>
      <!––[if IE 5.5]>
          <h2>版本5.5</h2>      <![endif]––>
      <!––[if IE 6]>
          <h2>版本6</h2>      <![endif]––>
      <!––[if IE 7]>
          <h2>版本7</h2>      <![endif]––>
<![endif]––>
那如果当前的浏览器是IE,但版本比IE5还低,该怎么办呢,可以使用<!–[if ls IE5]>,当然,根据条件注释只能在IE5+的环境之下,所以<!–[if lsIE 5]>根本不会被执行。lte:就是Less than orequal to的简写,也就是小于或等于的意思。 lt :就是Lessthan的简写,也就是小于的意思。gte:就是Greater than or equalto的简写,也就是大于或等于的意思。 gt :就是Greater than的简写,也就是大于的意思。! : 就是不等于的意思,跟javascript里的不等于判断符相同
 
 
(2)

应该如何应用条件注释   本文一开始就说明了,因为IE各版本的浏览器对我们制作的WEB标准的页面解释不一样,具体就是对CSS的解释不同,我们为了兼容这些,可运用条件注释来各自定义,最终达到兼容的目的。比如:< !–- 默认先调用css.css样式表 –->

<link rel="stylesheet" type="text/css"href="css.css" />< !-–[if IE7]>

<!–-如果IE浏览器版是7,调用ie7.css样式表- –>

<link rel="stylesheet" type="text/css"href="ie7.css" /><![endif]–->

<!–-[if lte IE 6]>

<!–-如果IE浏览器版本小于等于6,调用ie.css样式表 -–>

<link rel="stylesheet" type="text/css" href="ie.css"/><![endif]–>   这其中就区分了IE7和IE6向下的浏览器对CSS的执行,达到兼容的目的。同时,首行默认的css.css还能与其他非IE浏览器实现兼容。

   注意:默认的CSS样式应该位于HTML文档的首行,进行条件注释判断的所有内容必须位于该默认样式之后。   比如如下代码,在IE浏览器下执行显示为红色,而在非IE浏览器下显示为黑色。如果把条件注释判断放在首行,则不能实现。该例题很能说明网页对IE浏览器和非IE浏览器间的兼容性问题解决。 <styletype="text/css"> body{ background-color: #000; }< /style> < !-–[ifIE]>

<styletype="text/css">body{background-color:#F00;}< /style><![endif]–->

同时,有人会试图使用<!–-[if!IE]>来定义非IE浏览器下的状况,但注意:条件注释只有在IE浏览器下才能执行,这个代码在非IE浏览下非单不是执行该条件下的定义,而是当做注释视而不见。

   正常就是默认的样式,对IE浏览器需要特殊处理的,才进行条件注释。在HTML文件里,而不能在CSS文件中使用。

现在的DWcs4里面,已经装备了这些注释:在“窗口-->代码片段-->注释”里。其他的版本没太注意到。

0 0
原创粉丝点击