You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
228 B
JavaScript
8 lines
228 B
JavaScript
2 years ago
|
|
||
|
//第一个容器末尾添加div元素
|
||
|
var box = document.getElementsByClassName("container")[0];
|
||
|
var node = document.createElement("div");
|
||
|
node.setAttribute("class","item item7");
|
||
|
node.innerText = "js";
|
||
|
|
||
|
box.appendChild(node);
|