How to append div inside other div

后端 未结 5 1579
北荒
北荒 2021-01-26 03:37

I want to append div inside mytext div but it is updating text outside of the div




        
5条回答
  •  抹茶落季
    2021-01-26 03:48

    Try like this

    $(function(){
       var jj= $('body').append('
    '); $('.mytext').html('
    min
    ') ; });

提交回复
热议问题