How can I remove the search bar and footer added by the jQuery DataTables plugin?

前端 未结 19 2605
孤街浪徒
孤街浪徒 2020-12-07 07:45

I am using jQuery DataTables.

I want to remove the search bar and footer (showing how many rows there are visible) that is added to the table by default. I just wan

相关标签:
19条回答
  • 2020-12-07 08:21

    this worked for me #table is a Id of table

    $('#table').dataTable({searching: false, paging: false, info: false});
    
    0 讨论(0)
提交回复
热议问题