How to move an element into another element?

前端 未结 15 2661
無奈伤痛
無奈伤痛 2020-11-22 03:35

I would like to move one DIV element inside another. For example, I want to move this (including all children):

...
15条回答
  •  暖寄归人
    2020-11-22 04:34

    What about a JavaScript solution?

    // Declare a fragment:
    var fragment = document.createDocumentFragment();
    
    // Append desired element to the fragment:
    fragment.appendChild(document.getElementById('source'));
    
    // Append fragment to desired element:
    document.getElementById('destination').appendChild(fragment);
    

    Check it out.

提交回复
热议问题