美文网首页
DOM Manipulation

DOM Manipulation

作者: 不知道的是 | 来源:发表于2019-01-21 13:15 被阅读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

    相关文章

      网友评论

          本文标题:DOM Manipulation

          本文链接:https://www.haomeiwen.com/subject/fgpqjqtx.html