InsertBefore

Node.InsertBefore method

在现有子节点 child 之前插入节点。如果 child 为 null,则将节点插入到子列表的末尾。 如果 child 是 DocumentFragment 对象,则以相同的顺序将其所有子节点插入到 child 之前。如果孩子已经在树中,则首先将其移除。

public Node InsertBefore(Node node, Node child)
范围类型描述
nodeNode新来的孩子。
childNode参考孩子。

返回值

返回插入的节点

也可以看看