Node - get_childNodes
Specification
function get_childNodes
(Self : in DOMNode)
return DOMNodeList;
Description
Returns a DOMNodeList that contains all children of this node.
If there are no children, this is a DOMNodeList containing no nodes. The content of the returned DOMNodeList is "live" in the sense that, for instance, changes to the children of the node object that it was created from are immediately reflected in the nodes returned by the NodeList accessors; it is not a static snapshot of the content of the node. This is true for every NodeList, including the ones returned by the getElementsByTagName method.
Parameters
No parameters.
Return value
A DOMNodeList containing all children.
Exceptions
This method raises no exceptions.
Standard
Introduced in DOM Level 1.
get_nodeName
get_nodeValue
set_nodeValue
get_nodeType
get_parentNode
get_childNodes
get_firstChild
get_lastChild
get_previousSibling
get_nextSibling
get_attributes
get_ownerDocument
insertBefore
replaceChild
removeChild
appendChild
hasChildNodes
cloneNode
normalize
isSupported
get_namespaceURI
get_prefix
set_prefix
get_localName
hasAttributes
e-Mail: denny@nodix.de
|