认识
2023年11月08日
一、认识
二、语法
三、属性
四、事件
五、问题
5.1 property vs attribute
-
针对
class
:-
DOM property
:.className
-
HTML Attribute
:getAttribute('class')
-
-
针对
input
的value
:-
DOM property
:.value
视图、值同时更新 -
HTML Attribute
: 如果没有property value
, 则提供默认值, 值更新不影响视图的更新
-
-
针对
textarea
的type
:-
DOM property
:.type
无法获取 -
HTML Attribute
:getAttribute('type')
-
-
针对
textarea
的value
:-
DOM property
:.value
无法获取 -
HTML Attribute
:getAttribute('value')
无法获取
-