IE条件不适用于.js和.css

时间:2015-03-12 04:50:57

标签: html css internet-explorer

我使用此代码只为IE浏览器加载ie.css。但它不起作用,我很困惑! 谁能帮帮我?

<html>
    <head>
      <title>Demo for IE</title>
      <!--[if IE]>
          <link rel="stylesheet" type="text/css" href="ie.css" />
      <![endif]-->
    </head>
    <body>
        <h1>Testing for IE</h1>
    </body>
</html>

2 个答案:

答案 0 :(得分:0)

IE10和IE11不再支持条件注释。所以很可能,您正在使用这些版本中的任何一个

供您参考:

https://msdn.microsoft.com/en-us/library/ms537512.aspx

http://en.wikipedia.org/wiki/Conditional_comment

答案 1 :(得分:0)

<!DOCTYPE html>
<html lang="en">
<head>
    <!--[if lt IE 9]>
 <link rel="stylesheet" type="text/css" href="ie.css" />
    <![endif]-->
</head>


<body>
</body>
</html>

这将在IE9下面的IE上应用ie.css。您可以更改IE版本。