提示:使用'j'和'k'键
可以上下移动

Andor's Tumblog

HTML: The difference between attribute and property

Attributes are in your HTML text document/file, whereas properties are in HTML DOM tree. This means that attributes do not change and always carry initial (default) values. However, HTML properties can change, for example when user checks a checkbox, inputs text to textarea or uses JavaScript to change the property value.

标签:   #HTML