datatable $(...).dataTable(...).rows is not a function

韩阳云
2023-12-01

Uncaught TypeError: $(...).dataTable(...).rows is not a function
    at <anonymous>:1:31

 

官方文档api

https://datatables.net/reference/api/rows().data()

 

代码使用dataTable对象时,用的是$('#memberList').dataTable,

 

这个小写开头的方法没能获取到API,所以需要改成$('#memberList').DataTable,

使用大写的DataTable对象去实例化 就可以了 

 

datatable  例子

http://www.datatables.club/example/diy.html

 类似资料: