码迷,mamicode.com
首页 > 移动开发 > 详细

HTML DOM appendChild() 方法

时间:2016-11-22 17:32:04      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:water   node.app   pen   注释   html   highlight   dom   pre   list   

<!DOCTYPE html>
<html>
<body>

<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><b>注释:</b>首先创建 LI 节点,然后创建文本节点,然后把这个文本节点追加到 LI 节点。最后把 LI 节点添加到列表中。</p>

</body>
</html>

 

 

  • Coffee
  • Tea
  • Water
  • Water

请点击按钮向列表中添加项目。

注释:首先创建 LI 节点,然后创建文本节点,然后把这个文本节点追加到 LI 节点。最后把 LI 节点添加到列表中。

HTML DOM appendChild() 方法

标签:water   node.app   pen   注释   html   highlight   dom   pre   list   

原文地址:http://www.cnblogs.com/dexjinkey/p/6089897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!