Jquery, Clear / Empty all contents of tbody element?

前端 未结 6 1078
萌比男神i
萌比男神i 2021-01-30 12:06

I thought this would be rather simple but it seems the empty method is not working to clear out a tbody that I have. I would appreciate if anyone knows a proper way to do this,

6条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-30 13:09

    Example for Remove table header or table body with jquery

    function removeTableHeader(){
      $('#myTableId thead').empty();
    }
    
    function removeTableBody(){
        $('#myTableId tbody').empty();
    }
    
    
    1st heading 2nd heading 3rd heading
    1st content 1st content 1st content
    2nd content 2nd content 2nd content
    3rd content 3rd content 3rd content

提交回复
热议问题