HTML DOM Pre 对象
JavaScript基础 2022-05-13 16:22:12小码哥的IT人生shichen
HTML DOM Pre 对象
Pre 对象
Pre 对象代表 HTML <pre>
元素。
访问 Pre 对象
您可使用 getElementById()
来访问 <pre>
元素:
示例代码:
var x = document.getElementById("myPre");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 PRE 元素的演示</h3>
<pre id="myPre">
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both spaces and
line breaks
</pre>
<p>点击按钮获取 pre 元素的 innerHTML。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myPre").innerHTML;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Pre 对象
您可使用 document.createElement()
方法来创建 <pre>
元素:
示例代码:
var x = document.createElement("PRE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建 PRE 元素。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.createElement("PRE");
var t = document.createTextNode("This is a preformatted text.");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Pre 对象属性
属性 | 描述 |
---|---|
width |
HTML5 中不支持。请改用 style.width。 设置或返回预格式化文本的 width 属性值。 |