目录

HTML DOM hr 对象


HR 对象

HR 对象表示 HTML <hr> 元素。

访问 HR 对象

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

示例

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

创建 HR 对象

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

示例

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

HR 对象属性

Property Description
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the alignment of a horizontal line
color Not supported in HTML5. Use style.color instead.
Sets or returns the color of a horizontal line
noshade Not supported in HTML5.
Sets or returns whether a horizontal line should render in one solid color (noshaded)
size Not supported in HTML5. Use style.height instead.
Sets or returns the height of a horizontal line
width Not supported in HTML5. Use style.width instead.
Sets or returns the width of a horizontal line

标准属性和事件

HR 对象也支持该标准特性事件


相关页面

HTML 参考:HTML <hr> 标签