这是我的代码。当使用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]-->
Internet Explorer 10不支持条件注释,请参阅MSDN有关条件注释的页面。
重要 自Internet explorer 10起,标准模式不再支持条件注释。使用功能检测为浏览器不支持的网站功能提供有效的后退策略。有关标准模式的详细信息,请参见定义文档兼容性。