Leooonard / Notes

2 stars 0 forks source link

element.key和element.getAttribute("key") #6

Open Leooonard opened 9 years ago

Leooonard commented 9 years ago

element.key获取的是element的property.

element.getAttribute("key")获取的是element的attribute.

对于dom对象来说, 他有的是attribute(存于标签中的键值对), 对于js object来说, 他有的是property(object.propertyName)

两者大多时候会是一致的, 除了...

尽可能的去使用property, 只在你不得不使用时, 使用getAttribute