clone 方法

  1. @JSName('cloneNode')
Node clone(
  1. bool? deep
)

返回该节点的一个副本。

如果 deeptrue,则还会复制该节点及其所有子节点和后代。如果 deepfalse,则只复制该节点本身。

其他资源

实现

@JSName('cloneNode')
/**
 * Returns a copy of this node.
 *
 * If [deep] is `true`, then all of this node's children and descendants are
 * copied as well. If [deep] is `false`, then only this node is copied.
 *
 * ## Other resources
 *
 * * [Node.cloneNode](https://mdn.org.cn/en-US/docs/Web/API/Node.cloneNode)
 *   from MDN.
 */
Node clone(bool? deep) native;