The Node.hasChildNodes()
method returns a Boolean value indicating whether the current Node
has child nodes or not.
result = node.hasChildNodes();
result
true
or false
.The next example removes the first child node inside the element with the id "foo"
if foo has child nodes.
var foo = document.getElementById("foo"); if (foo.hasChildNodes()) { // do something with 'foo.childNodes' }
;(function(prototype) { prototype.hasChildNodes = prototype.hasChildNodes || function() { return !!this.firstChild; } })(Node.prototype);
There are various ways to determine whether the node has a child node.
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | 7.0 | (Yes) | (Yes) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Node/hasChildNodes