HTMLElement 接口表示所有的 HTML元素。一些HTML元素直接实现了HTMLElement接口,其它的间接实现 HTMLElement 接口。
Object.prototype
Function.prototype
EventTarget
Node
Element
HTMLElement
程序不能直接调用该构造函数,否则将会产生异常。
相应地应该使用document.createElement()方法。
属性 | 说明 |
---|---|
- | - |
语法 | 说明 |
---|---|
- | - |
Object.prototype
EventTarget.prototype
Node.prototype
Element.prototype
HTMLElement.prototype
从其父级继承的属性请查阅: Element。
属性 | 说明 |
---|---|
accessKey | 分配给元素的 access key。 |
accessKeyLabel | 表示元素分配的访问键的字符串。(A string that represents the element's assigned access key.) |
contentEditable | 获取/设置元素的可编辑状态。 |
isContentEditable | 只读,指示元素的内容是否可被编辑。 |
dataset | 只读,允许读写元素的自定义data特性(data-*)。 |
dir | 获取/设置元素的方向。 |
draggable | 是一个布尔值,指示元素是否可以拖动。 |
dropzone | 只读,返回 DOMSettableTokenList 反映 dropzone 全局属性和描述关于放操作元素的行为。 |
hidden | 是一个布尔值,指示元素是否隐藏。 |
从其父级继承的方法请查阅: Element。
语法 | 说明 |
---|---|
blur() | 从当前已经获得焦点的元素上移除键盘焦点。 |
click() | 在该元素上触发click事件。 |
focus() | 让当前元素获取焦点。 |
Object.prototype
EventTarget.prototype
Node.prototype
Element.prototype
HTMLElement.prototype
<abbr> 元素
<address> 元素
<article> 元素
<aside> 元素
<b> 元素
<cite> 元素
<bdo> 元素
<code> 元素
<dd> 元素
<dfn> 元素
<dt> 元素
<em> 元素
<figcaption> 元素
<figure> 元素
<footer> 元素
<header> 元素
<i> 元素
<kbd> 元素
<main> 元素
<mark> 元素
<nav> 元素
<noscript> 元素
<rb> 元素
<rp> 元素
<rt> 元素
<rtc> 元素
<ruby> 元素
<s> 元素
<samp> 元素
<section> 元素
<small> 元素
<strong> 元素
<sub> 元素
<sup> 元素
<u> 元素
<var> 元素
<wbr> 元素