Internet Explorer复古兼容性

时间:2014-02-26 10:15:03

标签: javascript html internet-explorer sharepoint compatibility

我正在使用Internet Explorer 11和SharePoint 2010。

我创建了一个简单的HTML页面,包括CSS,JavaScript和jQuery。我在SharePoint的页面中托管了我的页面。我添加了一个链接到我的HTML页面的简单WebPart(页面查看器)。

如果我在本地机器上用IE11打开我的页面,则会正确呈现;它不适用于SharePoint的页面。

我在本地计算机上看到页面的属性“文档模式”为“10”,而在SharePoint 2010中则为“8”。

什么是“文档模式”属性?我该如何解决这个问题?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

我解决了这个问题,在html head元素上添加了这个代码:

 <meta http-equiv="X-UA-Compatible" content="IE=Edge">

我在那里找到了解决方案:Forcing Internet Explorer 9 to use standards document mode