insertBefore 方法
在当前节点中插入给定节点,作为子节点插入在 child节点之前。如果 child 为 null
,则给定节点会被插入到当前节点子节点的末尾。
其他资源
实现
Node insertBefore(Node node, Node? child) native;
在当前节点中插入给定节点,作为子节点插入在 child节点之前。如果 child 为 null
,则给定节点会被插入到当前节点子节点的末尾。
Node insertBefore(Node node, Node? child) native;