HTML DOM appendChild() 方法

元素对象参考手册 元素对象

添加列表项:

<ul id="myList">
  <li>Coffee</li>
  <li>Tea</li>
</ul>
<p id="demo">单击按钮将项目添加到列表中</p>
<button onclick="myFunction()">点我</button>
<script>
  function myFunction() {
    var node = document.createElement("LI");
    var textnode = document.createTextNode("Water");
    node.appendChild(textnode);
    document.getElementById("myList").appendChild(node);
  }
</script>
<p><strong>注意:</strong><br>首先创建一个节点,<br> 然后创建一个文本节点,<br>然后将文本节点添加到LI节点上。<br>最后将节点添加到列表中。</p>

尝试一下 »


定义和用法

appendChild() 方法可向节点的子节点列表的末尾添加新的子节点。

提示:如果文档树中已经存在了 newchild,它将从文档树中删除,然后重新插入它的新位置。如果 newchild 是 DocumentFragment 节点,则不会直接插入它,而是把它的子节点按序插入当前节点的 childNodes[] 数组的末尾。

你可以使用 appendChild() 方法移除元素到另外一个元素。

转移某个列表项到另外一个列表项:

<ul id="myList1">
  <li>Coffee</li>
  <li>Tea</li>
</ul>
<ul id="myList2">
  <li>Water</li>
  <li>Milk</li>
</ul>
<p id="demo">单击按钮将项目从一个列表移动到另一个列表中</p>
<button onclick="myFunction()">点我</button>
<script>
  function myFunction() {
    var node = document.getElementById("myList2").lastChild;
    document.getElementById("myList1").appendChild(node);
  }
</script>

尝试一下 »


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 appendChild() 方法


语法

node.appendChild(node)

参数

参数 类型 描述
node 节点对象 必须。你要添加的节点对象。

返回值

类型 描述
节点对象 添加的节点

技术细节

DOM 版本 Core Level 1 Node Object

元素对象参考手册 元素对象