标签: wasm-bindgen
web_sys库中的Dom元素具有js方法 https://developer.mozilla.org/en-US/docs/Web/API/ChildNode/replaceWith
web_sys
js
由 https://rustwasm.github.io/wasm-bindgen/api/web_sys/struct.Element.html#method.replace_with_with_node
例如append_with,before_with或prepend_with没有这双_with。
append_with
before_with
prepend_with
_with
使用replace_with_node签名不会与其他replace方法冲突。
replace_with_node
replace
为什么要加倍_with?