这是我的代码。使用 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]-->