Skip to content
登录后刷题更便捷

“attribute” 和 “property” 之间有什么区别?

难度:

“Attribute” 是在 HTML 中定义的,而 “property” 是在 DOM 上定义的。为了说明区别,假设我们在 HTML 中有一个文本框:<input type="text" value="Hello">

js
const input = document.querySelector("input");
console.log(input.getAttribute("value")); // Hello
console.log(input.value); // Hello

但是在文本框中键入“ World!”后:

js
console.log(input.getAttribute("value")); // Hello
console.log(input.value); // Hello World!
参考

内容仅供参考,难免有不恰当的地方,如果有问题欢迎及时反馈
部分内容来自网络,如果不慎侵犯您的权益,请联系我们,以便及时删除侵权内容