why window[id] === document.getElementById( id ) [duplicate]
I've noticed in several browsers, dom elements can be accessed simply by their id like this:
HTML
<div id="chocolat"></div>
JS
alert(chocolat.id); //alerts "chocolat
chocolat; //points to the node
window.chocolat; //idem
chocolat === document.getElementById('chocolat'); // true
( test here: http://jsfiddle.net/GUUPT/ ) This will work on some versions of IE, on Chrome, but it won't on Firefox(5).
I'm curious where does this come from ? is it in the standards?
- It is non-standard
- It was started by Internet Explorer (version 4 IIRC)
- IIRC it only works in Quirks mode if you are using the latest version of IE
精彩评论