我如何知道 IE6 中是否触发了 Quirks 模式?
我读到,如果 DOCTYPE 未正确设置,IE6 将进入 Quirks 模式。
我已经给出了文档 HTML 4.01 Transitional,但是我如何知道 IE6 是否触发了 Quirks 模式?
I read that if the DOCTYPE is not corectly set IE6 will enter Quirks mode.
I have given a document HTML 4.01 Transitional, but how do I know if IE6 triggers Quirks mode or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用以下链接创建书签:
javascript:m=(document.compatMode=='CSS+Compat')?'Standards.':'Quirks';window.alert('您处于 ' + m + ' 模式。' );
create a bookmark with the following link:
javascript:m=(document.compatMode=='CSS+Compat')?'Standards.':'Quirks';window.alert('You are in ' + m + ' mode.');
查看 document.compatMode
Look at document.compatMode
如果您查看地址栏的末尾,会有一个小“损坏的页面”图标,显示您是否处于怪异模式或“正确”模式!
您还可以使用 JavaScript 通过查询来获取此信息...
If you look at the end of the address bar, there is a little "broken page" icon that shows whether you are in quirks mode, or "proper" mode!
You can also get this using JavaScript by querying...