DOM Manipulation

2019-01-21  本文已影响0人  不知道的是

Node.appendChild

const img = document.createElement('img')

document.body.appendChild(img) // ①

document.head.appendChild(img) // ②

① 将 img 节点插入到 body 中

② 移除 body 中的 img 节点,将 img 节点插入到 head 中

Node.appendChild.gif

https://codepen.io/MonguDykrai/pen/xMKwoB

上一篇下一篇

猜你喜欢

热点阅读