In jQuery I want to remove all HTML inside of a div

前端 未结 6 974
梦谈多话
梦谈多话 2020-12-02 09:30

I have a div and I want to remove all the HTML inside of that div.

How can I do this?

6条回答
  •  难免孤独
    2020-12-02 10:07

    Another way is just to set the html to the empty string:

    $('#mydiv').html('');
    

提交回复
热议问题