jQuery duplicate DIV into another DIV

后端 未结 5 739
北海茫月
北海茫月 2020-11-29 00:46

Need some jquery help copying a DIV into another DIV and hoping that this is possible. I have the following HTML:

  
5条回答
  •  一整个雨季
    2020-11-29 01:29

    Put this on an event

    $(function(){
        $('.package').click(function(){
           var content = $('.container').html();
           $(this).html(content);
        });
    });
    

提交回复
热议问题