Side navigation
#11131 closed bug (invalid)
Opened January 06, 2012 06:09AM UTC
Closed January 06, 2012 01:29PM UTC
In IE(6~8), $('<a class=aaa>') couldn't get the [0] method
Reported by: | phoetry | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In IE(6~8):
tyyeof $('<a class=aaa>').get(0) === 'undefined'; tyyeof $('<a class=aaa>')[0] === 'undefined'; typeof $('<a class=aaa/>')[0] === 'object';
But Other Browsers:
tyyeof $('<a class=aaa>')[0] === 'object'; typeof $('<a class=aaa/>')[0] === 'object';
In IE(6~8):
But Other Browsers: