我的php页面返回html表数据,我需要将其转换为datatable或dynatable,我尝试将所需文件(javascripts和css)包含到页面中,php将返回表格并在我使用的javascript函数中
var a = [];
$('#ul_li_SubCategories li').each(function(i){
a.push($(this).val());
});
console.log(a);
它只返回html表,没有可动态的功能或分页。
我也试过数据表但没有工作
答案 0 :(得分:0)
您需要加入datatable.js
,然后才能执行此功能:
$(document).ready(function() {
$('#myTable').datatable();
});