IE兼容模式

时间:2014-04-02 13:15:59

标签: javascript internet-explorer internet-explorer-9

我在.js页面中有以下代码,应在空白页面中打开报告。这仅在将站点添加到IE11的兼容性列表中时才有效。

window.open("RosterList.aspx?strWhere= " + strWhere + "&strSort=" + strSort, '_blank');

我的用户在IE9上,当他们选择报告时,它只显示一个空白屏幕和一个旋转加载图标。 如果他们进入他们的IE并将该站点添加到他们的兼容性列表中,则会显示该报告。 问题是......在我的应用程序中需要写什么才能强制网站进入兼容模式。我的MasterPage已包含声明

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

但这没效果?

1 个答案:

答案 0 :(得分:0)

试试这个:

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