标签: javascript html dom
在MDN上,DOM对象的属性本身显示为directly on the object,而不是原型,就像它与其他内置类型一样(示例:Object,{{3} })。
当我定义一个新的DOM对象(例如const myEle = document.createElement('div');)并检查它时,我可以看到它是原型链接到Object然后null。
const myEle = document.createElement('div');
Object
null
为什么MDN不会将属性显示为Element.prototype等?
Element.prototype