是什么决定了“兼容性视图”是否可用? Internet Explorer 8 中是否出现 按钮?
在我正在开发的某些网站上,我注意到地址栏旁边显示了“兼容性视图”按钮。然而,当我查看其他网站时,这个按钮并不总是可用。
是什么决定了该按钮是否向用户显示?它与 标头标记有关吗?
(下面是我正在谈论的内容的屏幕截图)
替代文本 http://img380.imageshack .us/img380/4858/compatabilitybutton.png
On some sites I'm developing, I noticed that the 'Compatibility View' button is shown beside the address bar. Yet when I view other websites, this button is not always available to me.
What determines whether or not this button is shown to the user? Does it have to do with the <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
header tag?
(Screenshot below of what I'm talking about)
alt text http://img380.imageshack.us/img380/4858/compatabilitybutton.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,唯一影响这一点的确实是
标记。
MSDN 页面中有关文档兼容性的注释:此标记必须出现在代码的</code> 之外的<em>任何其他标记</em>之前< /strong> 标签。
部分中,位于除
It turns out the only thing that affects this is indeed the
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
tag.Note from the MSDN page on document compatibility: This tag must appear in the
<head>
section of your code before any other tags except the<title>
tag.