目录

HTML DOM pre 对象


Pre 对象

Pre 对象代表 HTML <pre> 元素。

访问预对象

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

示例

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

创建预对象

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

示例

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

预对象属性

Property Description
width Not supported in HTML5. Use style.width instead.
Sets or returns the value of the width attribute of the preformatted text

标准属性和事件

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


相关页面

HTML 教程:HTML 文本格式

HTML 参考:HTML <pre> 标签