How to move an element into another element?

前端 未结 15 2536
無奈伤痛
無奈伤痛 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:33

    Ever tried plain JavaScript... destination.appendChild(source); ?

    onclick = function(){ destination.appendChild(source); }
    div{ margin: .1em; } 
    #destination{ border: solid 1px red; }
    #source {border: solid 1px gray; }
    
    
    
     
    
      
    ###
    ***

提交回复
热议问题