Unsere Freiwilligen haben diesen Artikel noch nicht in Deutsch übersetzt. Machen Sie mit und helfen Sie, das zu erledigen!
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] ); }
Specification
See also
Schlagwörter des Dokuments und Mitwirkende
Schlagwörter:
Mitwirkende an dieser Seite:
fscholz,
AshfaqHossain,
basemnassar11,
teoli,
TinhangMa,
kscarfone,
namolmes,
Sheppy,
mattbasta,
ethertank,
ziyunfei,
Matej Lednar,
Mgjbot,
Jabez,
Pmash,
Ptak82,
Raevel,
Dria,
JesseW
Zuletzt aktualisiert von:
fscholz,