appendChild
In this chapter you will learn:
Add a child
appendChild()
adds a node to the end of the childNodes list.
appendChild()
returns the newly added node.
<!DOCTYPE html><!--from jav a 2s .com-->
<html>
<body>
<div id="div1">
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
</div>
<p id="p1">Hello <b>World!</b></p>
<script type="text/javascript">
var div = document.getElementById("div1");
var p = document.getElementById("p1");
var returnedNode = div.appendChild(p);
document.writeln(returnedNode == p); //true
document.writeln(div.lastChild == p); //true
</script>
</body>
</html>
If the node passed into appendChild()
is
already part of the document, it is removed from its previous
location and placed at the new location.
Next chapter...
What you will learn in the next chapter: