IE8兼容模式下是否能像IE7一样显示网页?
IE8 兼容模式调试与 IE7 调试完全相同吗?
网站显示的内容完全一样吗?
那么如果我有 IE8,我就不需要 IE7 来测试?
谢谢
is debugging in compatibility mode in IE8 exactly the same than debugging in IE7 ?
do the websites display exactly the same ?
So I don't need IE7 for testing if I have IE8 ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它非常接近 - 但不一样,有一些细微的差别。
这一切都取决于您的代码...例如,如果您的页面没有文档类型,例如您在怪异模式下运行或强制怪异模式,则 iframe 上
height="100%"
的解释是不同的真实 IE7 与 IE8 中的 IE7 模式。前者是“我的容器的 100%”,后者是“默认高度的 100%”,约为 220px。It is pretty close - but not the same, there are several subtle differences.
It all depends on your code... e.g. if your pages have no doctype e.g. you are running in quirks mode or you force quirks mode, the interpretation of
height="100%"
on an iframe is different in real-IE7 vs IE7mode in IE8. The former is "100% of my container" the later is "100% of default height" which is about 220px.