QuirksMode & JavaScript Implementation

╄→尐↘猪︶ㄣ 提交于 2019-12-10 10:15:42

问题


I would like to ask if Internet Explorer in QuirksMode has a different JavaScript implementation than IE in a normal mode (when doctype is correctly defined).

Is it possible that a JavaScript code will behave in a different way in QuirksMode and in normal IE mode?


回答1:


Yep.

One of the most noticeable differences is that in quirks mode, BODY (document.body) is considered to be root element, whereas in standard mode (and the way it's meant to be) - root element is HTML (document.documentElement).

This, for example, affects the way viewport dimensions are usually calculated; in standard mode, one would use document.documentElement.clientHeight, while in quirks - document.body.clientHeight - to get height of a viewport.

Detecting this behavior is easy - document.documentElement.clientHeight == 0 - would tell us that documentElement is not the root element, and that body should be used instead.

And of course other usual quirks mode discrepancies, such as assigning unitless CSS values, result in a different outcome. When in quirks, such values are traditionally assigned successfully, whereas in standards mode - they are ignored.




回答2:


JavaScript should not behave differently; however, the DOM objects that JavaScript operates on may have different behaviors.




回答3:


It certainly does in Internet Explorer 8 where full standards mode no longer gets <a name="foo"> when asked document.getElementById('foo') and where (IIRC) setAttribute and friends are fixed.



来源:https://stackoverflow.com/questions/1503843/quirksmode-javascript-implementation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!