HTML attribute | DOM property |
大小写不敏感 | 大小写敏感 |
值是字符串 或null | 值是任何JS类型 |
不存在时返回null | 不存在时返回undefined |
attribute中value==property中defaultValue(实时同步), attribute中value更新会同步property中value(但input输入过内容后或property value被赋值过后不会再同步) | property中value赋值不会同步attribute中value,且attribute也不再同步property value property value值和输入框内容保持一致且自动转字符串 |
HTML bool
hidden, disabled, checked, selected, required, readOnly 这些属性在attribute和property中间有转换器,向attribute转换为null或空字符串,向property转换为false或true。attribute只有null代表假值,其他代表真值。