append 方法
- @JSName('appendChild')
- Node node
将节点添加到该节点子 节点 列表的末尾。
如果节点已存在于该文档中,它将被从其当前父节点中移除,然后添加到该节点。
此方法比 nodes.add
更有效率,是添加子节点首选的方式。
实现
@JSName('appendChild')
/**
* Adds a node to the end of the child [nodes] list of this node.
*
* If the node already exists in this document, it will be removed from its
* current parent node, then added to this node.
*
* This method is more efficient than `nodes.add`, and is the preferred
* way of appending a child node.
*/
Node append(Node node) native;