We may want to add a new item to an HTML document. The first step is to create the node (element) that you want to add, the next step is to find the location in the document where you want to add it, and the last step is to do so. The syntax used to create a node is very simple, you only call a method (method) of the document object.
- createElement(): Creates a node of the specified name.
- createTextNode: allows you to add text to the node you specify.
- appendChild(): allows you to set where you want to node.
- insertBefore(): Used to add / move an existing item.
- removeChild(): removes a specified child node of the specified item.
- replaceChild():replaces a child node of the specified node with another node.
- cloneNode(): creates a copy of a node, and returns the copy.
- adoptNode(): This method is used to accept a node in another document.
- hasChildNodes(): Returns true if the specified node has a child node. Returns a false node if the specified node does not have a child node.
- importNode(): This method imports another node from a document.
HTML DOM hasChildNodes() Method
The hasChildNodes () method returns true if the specified node has any child nodes. Returns false if the specified node does not have any child nodes.
Text blanks or blank lines within a node are counted as child nodes.
Syntax:
node.hasChildNodes()
hasChildNodes Examples
Example 1
<div id="container">
<p>truecodes.org</p>
<h2>truecodes.org</h2>
<input type="text" />
</div>
<button onclick="controlFunction()">CONTROL</button>
<p id="show"></p>
<script>
function controlFunction() {
let box = document.getElementById("container").hasChildNodes();
let show = document.getElementById("show");
show.innerHTML = box;
}
</script>