封鎖 >utils >數字 >insertAfter
utils.dom.insertAfter() 函式
在參照節點後方插入節點。與 node.insertBefore 函式比較。
Signature:
export declare function insertAfter(newNode: Element, refNode: Element): void;
參數
參數 | 類型 | 說明 |
---|---|---|
newNode | 元素 | 要插入的新元素。 |
refNode | 元素 | 在新節點前面的現有元素。 |
傳回:
void