目标即非,即不工作?我的ie版本是ie10

时间:2013-04-20 07:03:33

标签: html target internet-explorer-10

这是我的代码。当使用ie时,我希望它显示“请更改您的浏览器!”,并且只有非ie浏览器才能看到其他代码。但它在ie10中不起作用(即10不显示h1而其他代码)我的代码有什么问题?

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Sisu|Swap</title>
<link type="text/css" rel="stylesheet" href="1.css">
</head>
<body>
<!--[If IE]> 
<h1 style="color: white">please change your browser!</h1>
<![endif]-->
<!--[if !IE]>--> 
  <header>
    <img src="imgs/header.jpg" />
  </header>

  <footer>

  </footer>

</body>
</html>
<!--<![endif]--> 

1 个答案:

答案 0 :(得分:3)

Internet Explorer 10不支持条件注释,请参阅MSDN page about conditional comments

  

重要从Internet Explorer 10开始,标准模式不再支持条件注释。使用功能检测为浏览器不支持的网站功能提供effective fallback strategies。有关标准模式的更多信息,请参阅Defining Document Compatibility