append_child method
append_child
Adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, Node.append_child
moves it from its current position to the new position (there is no requirement to remove the node from its parent node before appending it to some other node).
This means that a node can’t be in two points of the document simultaneously. So if the node already has a parent, the node is first removed, then appended at the new position. The Node.clone_node
method can be used to make a copy of the node before appending it under the new parent. Copies made with Node.clone_node
are not be automatically kept in sync.
Returns
A Node that is the appended child, except when child is a DocumentFragment
, in which case the empty DocumentFragment
is returned.
def append_child(self, node):
...
Parameter | Type | Description |
---|---|---|
node | aspose.html.dom.Node | The node to append to the given parent node (commonly an element). |
Exceptions
Exception | Description |
---|---|
DOMException | Thrown when the constraints of the DOM tree are violated. |
See Also
- module
aspose.html
- class
DOMException
- class
DocumentFragment
- class
HTMLBaseElement
- class
Node