Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/81.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 sharepoint intranet docmode设置为IE8_Html_Sharepoint_Sharepoint 2010_Internet Explorer 11 - Fatal编程技术网

Html sharepoint intranet docmode设置为IE8

Html sharepoint intranet docmode设置为IE8,html,sharepoint,sharepoint-2010,internet-explorer-11,Html,Sharepoint,Sharepoint 2010,Internet Explorer 11,各位 我们有一个内部网sharepoint站点,在IE11中默认为IE8模式。我尝试将一个html文件添加到sharepoint,并将Meta标记设置为IE=11。看起来IE11正在覆盖doctype并默认为IE8。这只发生在内部网sharepoint站点上。其他intranet站点以边缘模式打开。这让我相信IE11以某种方式使用位置url来确定doctype 我清除了兼容性视图、企业模式、组策略等。我只想弄清楚切换到IE8的确切位置 谢谢 ================== @Thriggl

各位

我们有一个内部网sharepoint站点,在IE11中默认为IE8模式。我尝试将一个html文件添加到sharepoint,并将Meta标记设置为IE=11。看起来IE11正在覆盖doctype并默认为IE8。这只发生在内部网sharepoint站点上。其他intranet站点以边缘模式打开。这让我相信IE11以某种方式使用位置url来确定doctype

我清除了兼容性视图、企业模式、组策略等。我只想弄清楚切换到IE8的确切位置

谢谢

==================
@Thriggle见下文

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <title>SharePoint</title>
    <link rel="stylesheet" href="assets/css/animate.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/font-awesome.min.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/waves.min.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/material-design-icons.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/font.css" type="text/css" />
    <link rel="stylesheet" href="assets/css/app.css" type="text/css" />
    <link rel="stylesheet" href="charts.css" type="text/css" />
        <script src="assets/js/jquery.js" type="text/javascript"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.SPServices/2014.02/jquery.SPServices-2014.02.min.js"></script> 
<script type="text/javascript">

SharePoint
============
@Nikolay Hello,在F12模式下,它默认为IE8,即使标签设置为IE=edge。我也试过小提琴手。我仍然无法理解为什么它默认为IE8

我们可以查看HTML文件的内容吗?Internet Explorer一直有一个有趣的习惯,如果它在HTML中看到任何意外情况,就会跳入兼容模式(或旧的“怪癖”模式)。您是否尝试过在浏览器中点击F12并检查文档/标题的内容?您在那里有所有可用的信息,因此您可以轻松地找出ie8的来源。@Thriggle我已经用代码更新了问题。@Nikolay更新了“兼容性视图设置”中的问题是否选中了“在兼容性视图中显示内部网站点”?