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 中
本文标题:DOM Manipulation
本文链接:https://www.haomeiwen.com/subject/fgpqjqtx.html
网友评论