HTML DOM Output 对象

Output 对象

Output 对象代表 HTML <output> 元素。

注释:Internet Explorer / Edge 不支持 <output> 元素。

访问 Output 对象

您可使用 getElementById() 来访问 <output> 元素:

var x = document.getElementById("myOutput");

亲自试一试

提示:您还可以通过搜索表单的元素集合,访问 <output> 元素。

创建 Output 对象

您可使用 document.createElement() 方法来创建 <output> 元素:

var x = document.createElement("OUTPUT");

亲自试一试

Output 对象属性

属性 描述
defaultValue 设置或返回 <output> 元素的默认值。
form 返回对包含 <output> 元素的表单的引用。
htmlFor 返回 <output> 元素的 for 属性的值。
labels 返回与 <output> 元素相关联的 <label> 元素列表。
name 设置或返回 <output> 元素的 name 属性的值。
type 返回 Output 对象代表哪种类型的 HTML 元素。
value 设置或返回 <output> 元素的值。

标准属性和事件

Output 对象支持标准属性事件

相关页面

HTML 参考手册:HTML <output> 标签