IE兼容模式问题
我的问题是 IE8 在某些计算机上进入兼容模式(到目前为止仅限我们公司域中的计算机)。
我们之前遇到过这个问题,唯一的区别是它在所有计算机上都进入了兼容模式,因此我将此标签添加为我的 标签中的第一个元素:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
并将其修复一些电脑。这可能是我们管理员设置的 IE 选项,还是有人知道可能导致此问题的原因?
My problem is that IE8 goes in Compatibility Mode on some computers (So far the computers on our companys domain only).
We've had the problem before, only difference is that it went into Compatibility Mode on all computers, so I added this tag as the first element in my <head>
tag:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
And it fixed it on some computers. Could this be an IE option set by our admins, or does anyone have any other idea of what could be causing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是将 X-UA-Compatible 添加为 HTTP 标头,而不是元标记。
The solution is to add the X-UA-Compatible as a HTTP header, and not as a meta tag.