Document: createTextNode() 方法

创建一个新的 Text 节点。此方法可用于转义 HTML 字符。

语法

js
createTextNode(data)

参数

data

包含要放入文本节点的数据的字符串。

返回值

一个 Text 节点。

示例

html
<!doctype html>
<html lang="en">
  <head>
    <title>createTextNode example</title>
    <script>
      function addTextNode(text) {
        const newtext = document.createTextNode(text);
        const p1 = document.getElementById("p1");

        p1.appendChild(newtext);
      }
    </script>
  </head>

  <body>
    <button onclick="addTextNode('YES! ');">YES!</button>
    <button onclick="addTextNode('NO! ');">NO!</button>
    <button onclick="addTextNode('WE CAN! ');">WE CAN!</button>

    <hr />

    <p id="p1">First line of paragraph.</p>
  </body>
</html>

规范

规范
DOM 标准
# ref-for-dom-document-createtextnode①

浏览器兼容性

BCD 表格仅在浏览器中加载