码迷,mamicode.com
首页 > 其他好文 > 详细

节点操作案例5-动态创建元素

时间:2019-08-26 15:32:12      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:har   round   box   create   pre   doc   tle   type   tee   

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div id="box">
    <div>111</div>
  </div>
  <script>
    // 在内存中创建一个DOM对象
    var p = document.createElement(p);
    // 设置对象的属性
    p.innerText = hello;
    p.style.color = red;

    // 把p元素,放到DOM树上
    var box = document.getElementById(box);
    box.appendChild(p);

  </script>
</body>
</html>

 

节点操作案例5-动态创建元素

标签:har   round   box   create   pre   doc   tle   type   tee   

原文地址:https://www.cnblogs.com/jiumen/p/11412324.html

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