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

js创建子节点

时间:2017-04-28 15:53:08      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:app   his   creat   node   ntb   type   append   this   text   

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>js创建子节点</title>
</head>
<body>

<ul id="test">
  <li>JavaScript</li>
  <li>HTML</li>
</ul>
 
<script type="text/javascript">

  var otest = document.getElementById("test");  
  var newnode=document.createElement("li");
  newnode.innerHTML="This is a new li";
  otest.appendChild(newnode);
</script>

</body>
</html>

js创建子节点

标签:app   his   creat   node   ntb   type   append   this   text   

原文地址:http://www.cnblogs.com/shoolnight/p/6781616.html

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