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 中
const img = document.createElement('img')
document.body.appendChild(img) // ①
document.head.appendChild(img) // ②
① 将 img
节点插入到 body 中
② 移除 body 中的 img
节点,将 img
节点插入到 head 中