目录

HTML DOM br 对象


BR对象

BR 对象代表 HTML <br> 元素。

访问 BR 对象

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

示例

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

创建 BR 对象

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

示例

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

BR 对象属性

Property Description
clear Not supported in HTML5. Use style.clear instead.
Sets or returns the flow of text around floating objects

标准属性和事件

BR对象也支持标准特性事件


相关页面

HTML 参考:HTML <br> 标签