Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.createTextNode

概述

创建一个新的文本节点.

语法

var text = document.createTextNode(data);

参数

  • text 是一个文本节点.
  • data 是一个字符串,包含了放在文本节点中的内容.

例子

<html>
<head>
<title>createTextNode example</title>

<script type="text/javascript">

function addTextNode()
{
var newtext = document.createTextNode("动态添加一些文本");
var para = document.getElementById("p1");
para.appendChild(newtext);
}

</script>
</head>

<body>
<div style="border: 1px solid red">
<p id="p1">一段话的第一行.<br /></p>
</div><br />

<button onclick="addTextNode();">添加一个文本节点.</button>

</body>
</html>

规范

createTextNode

文档标签和贡献者

 此页面的贡献者: teoli, khalid32, ziyunfei
 最后编辑者: khalid32,