property(属性)与attribute(特性)
attribute就是html代码中的属性,例如html中常用的id、class、title、align等
Property是这个DOM元素作为对象,其附加的内容,例如childNodes、firstChild等。
常用的Attribute,例如id、class、title等,已经被作为Property附加到DOM对象上,可以和Property一样取值和赋值。但是自定义的Attribute,就不会有这样的特殊优待。
取值与赋值
setAttribute,getAttribute
property:用.来访问与设置。