使用另一个节点替换当前节点。
Node replaceWith(Node otherNode) { try { final Node parent = this.parentNode!; parent._replaceChild(otherNode, this); } catch (e) {} return this; }