Node.InsertBefore

Node.InsertBefore method

既存の子ノード child の前にノードを挿入します。 child が null の場合、child のリストの最後に node を挿入します。 child が DocumentFragment オブジェクトの場合、すべての子が同じ順序で child の前に挿入されます。子がすでにツリーにある場合は、最初に削除されます.

public Node InsertBefore(Node node, Node child)
パラメータタイプ説明
nodeNode新しい子。
childNodeレファレンスの子。

戻り値

挿入されたノードを返します

関連項目