目录

HTML DOM output 对象


输出对象

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

笔记:Internet Explorer / Edge 不支持 <output> 元素。

访问输出对象

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

示例

var x = document.getElementById("myOutput");
亲自试一试 »

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

创建输出对象

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

示例

var x = document.createElement("OUTPUT");
亲自试一试 »

输出对象属性

Property Description
defaultValue Sets or returns the default value of an <output> element
form Returns a reference to the form that contains the <output> element
htmlFor Returns the value of the for attribute of an <output> element
labels Returns a list of <label> elements associated with the <output> element
name Sets or returns the value of the name attribute of an <output> element
type Returns which type of HTML element the Output object represents
value Sets or returns the value of an <output> element

标准属性和事件

输出对象还支持标准特性事件


相关页面

HTML 参考:HTML <输出> 标签