How to move an element into another element?

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

    You can use:

    To Insert After,

    jQuery("#source").insertAfter("#destination");
    

    To Insert inside another element,

    jQuery("#source").appendTo("#destination");
    

提交回复
热议问题