dom property 和 dom attribute

我们可以通过 getAtrribute 和 id 访问 dom 的属性

element.getAttribute();
e.id;

通过 setAttribute 或者 给属性赋值都会修改这个属性 但是要访问自定义属性只能通过 setAttribute 或者 getAttribute 方法

Last Updated: