我想只为所有IE版本6,7和8使用JavaScript。
答案 0 :(得分:7)
嵌套条件(错误):
<!--[if lte IE 8]>
<!--[if gte IE 6]>
<!-- your stuff here -->
<![endif]-->
<![endif]-->
修改强>
正如Martha强调的那样,嵌套条件不起作用,请使用“&
”:
<!--[if (lte IE 8) & (gte IE 6)]>
<!-- your stuff here -->
<![endif]-->
来自MSDN的其他示例:
<!--[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 true]>You are using an <em>uplevel</em> browser.<![endif]-->
<![if false]>You are using a <em>downlevel</em> browser.<![endif]>
<!--[if true]><![if IE 7]><p>This nested comment is displayed in IE 7.</p><![endif]><![endif]-->
答案 1 :(得分:1)
您可以这样做以防止它应用于IE的未来版本
<!--[if lt IE 9]>
Content for IE less than version 9 goes here
<![endif]-->
答案 2 :(得分:1)
您可以在Internet Explorer上定位条件注释,无论版本如何:
<!--[if IE]> IE stuff goes here <![end if]-->
请参阅http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx
答案 3 :(得分:0)