我們的志工尚未將此文章翻譯為 正體中文 (繁體) 版本。加入我們,幫忙翻譯!
The Node.hasChildNodes()
method returns a Boolean
value indicating whether the current Node
has child nodes or not.
Syntax
node.hasChildNodes()
Examples
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() ) { foo.removeChild( foo.childNodes[0] ); }