How can i delete all divs with a certain class name?

前端 未结 1 1838
青春惊慌失措
青春惊慌失措 2021-02-12 10:53

Using jquery, what is the best way to delete all divs with a certain class name ? (I don\'t want to just hide the div but fully delete it). So if I have this code:



        
1条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-12 11:52

    $("div.Test").remove();
    

    That'll do it.

    0 讨论(0)
提交回复
热议问题