Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/vba/16.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
Internet explorer ie9中兼容模式下的网站呈现_Internet Explorer_Internet Explorer 9_Compatibility_Ie Compatibility Mode - Fatal编程技术网

Internet explorer ie9中兼容模式下的网站呈现

Internet explorer ie9中兼容模式下的网站呈现,internet-explorer,internet-explorer-9,compatibility,ie-compatibility-mode,Internet Explorer,Internet Explorer 9,Compatibility,Ie Compatibility Mode,我和你有问题。我无法复制这个问题,但网站所有者在IE9中遇到了问题,在IE9中,徽标和其他项目无法正常工作。我尝试使用此代码:但这会呈现一个空白页 有人对解决方法有什么建议吗?有点晚了,但是meta标签必须是head中的第一个标签 对 这是代码您是否将此代码放在开始标记之后,之前?在这个元标记之前没有任何输出,包括doctype之前的不可见字符吗? <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /

我和你有问题。我无法复制这个问题,但网站所有者在IE9中遇到了问题,在IE9中,徽标和其他项目无法正常工作。我尝试使用此代码:但这会呈现一个空白页

有人对解决方法有什么建议吗?

有点晚了,但是meta标签必须是head中的第一个标签


这是代码您是否将此代码放在开始标记之后,之前?在这个元标记之前没有任何输出,包括doctype之前的不可见字符吗?
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
</head>
<head>
    <title>Title</title>
    <meta other-meta-tags />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
</head>
header("X-UA-Compatible: IE=Edge");