-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't access element attributes by array index #27
Comments
h1.attributes.item(0) should work fine. The attributes array is very hard to emulate in pure JavaScript; we'd need to use ES6 proxies in order to implement direct array access to attributes. See https://github.com/andreasgal/dom.js/blob/master/src/impl/Element.js#L241 for a long description of why exactly DOM attributes are hard. |
@cscott Understood, and I was already using that workaround, filed just in case. How are you able to get around this for |
See https://github.com/fgnass/domino/blob/master/lib/NodeList.js (for example). We return an actual JavaScript array with an item() method added. This works when the single array can be the canonical storage for the values. Attributes are a funny case because they are mirrored and reflected all over the place, as described in that link above. That said, it seems like it might be possible to re-engineer the representation of attributes such that Element.attributes is the One True Place to find attribute information, rewriting all the other ways to access attributes to use it. This would be a pretty invasive change, though, and if users tried to mutate the attributes array directly (in theory it is read-only, but in practice it would have to be writable) then Bad Things would happen. |
Understood. Thanks for the explanation. |
I'm leaving this bug open to remind me to add a note to the documentation explaining that array accesses on Element.attributes are not supported (use .item() instead). |
If we ever bump the node minimum version to >= 6 (it's currently >= 4) then we could actually use ES6 proxies for attributes... |
I'm having issues iterating over the list of attributes on an element. Here's sample code:
The text was updated successfully, but these errors were encountered: