Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 目标ie和非ie不起作用?我的ie版本';s ie10_Html_Target_Internet Explorer 10 - Fatal编程技术网

Html 目标ie和非ie不起作用?我的ie版本';s ie10

Html 目标ie和非ie不起作用?我的ie版本';s ie10,html,target,internet-explorer-10,Html,Target,Internet Explorer 10,这是我的密码。当使用ie时,我希望它显示“请更改您的浏览器!”,并且只有非ie浏览器才能看到其他代码。但它在ie10中不起作用(ie10不显示h1,但显示其他代码)我的代码有什么问题 <!doctype html> <html> <head> <meta charset="utf-8"> <title>Sisu|Swap</title> <link type="text/css" rel="stylesheet" hr

这是我的密码。当使用ie时,我希望它显示“请更改您的浏览器!”,并且只有非ie浏览器才能看到其他代码。但它在ie10中不起作用(ie10不显示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]--> 

Sisu交换

Internet Explorer 10不支持条件注释,请参阅

重要自Internet Explorer 10起,标准模式不再支持条件注释。使用功能检测来提供浏览器不支持的网站功能。有关标准模式的详细信息,请参见


Internet Explorer 10不支持条件注释,请参阅

重要自Internet Explorer 10起,标准模式不再支持条件注释。使用功能检测来提供浏览器不支持的网站功能。有关标准模式的详细信息,请参见


可能的重复如果由于缺少功能而有理由排除IE10,您可能应该使用所需缺少功能的功能检测来排除它,而不是通过名称。如果由于缺少功能而有理由排除IE10,则可能重复,您可能应该使用所需缺少功能的功能检测而不是名称来排除它。。