Copy the content of a div into another div

前端 未结 4 1372
野性不改
野性不改 2020-12-09 19:01

I have two divs on my website. They both share the same css properties, but one of them holds 24 other divs. I want all of these 24 divs to be copied into the other div. Thi

4条回答
  •  温柔的废话
    2020-12-09 19:30

    Firstly we are assigning divs into variables (optional)

    var firstDivContent = document.getElementById('mydiv1');
    var secondDivContent = document.getElementById('mydiv2');
    

    Now just assign mydiv1's content to mydiv2.

    secondDivContent.innerHTML = firstDivContent.innerHTML;
    

    DEMO http://jsfiddle.net/GCn8j/

    COMPLETE CODE

    
    
      
    
    
      

提交回复
热议问题