跳到主要内容

认识

2023年11月08日
柏拉文
越努力,越幸运

一、认识


二、语法


三、属性


四、事件


五、问题


5.1 property vs attribute

  • 针对 class:

    • DOM property: .className

    • HTML Attribute: getAttribute('class')

  • 针对inputvalue:

    • DOM property: .value 视图、值同时更新

    • HTML Attribute: 如果没有 property value , 则提供默认值, 值更新不影响视图的更新

  • 针对textareatype:

    • DOM property: .type 无法获取

    • HTML Attribute: getAttribute('type')

  • 针对textareavalue:

    • DOM property: .value 无法获取

    • HTML Attribute: getAttribute('value') 无法获取