What's the difference between `HTMLElement` and `Element`?

后端 未结 3 864
陌清茗
陌清茗 2020-12-23 08:56

What\'s the difference between HTMLElement and Element ?

document.createElement(\"div\") instanceof Element gives true

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-23 09:32

    HTMLElements inherit from Element which inherit from Node.

    This means that your HTMLElement is simultaneously an 'instanceof' all three. The fact that it is an HTMLElement means it has an interface that's contains methods only an HTMLElement would need like attachEvent.

提交回复
热议问题