我正在使用datatables插件来显示表格数据。它显示数据,但排序,搜索&其他功能不起作用。以下是代码,请帮助
1)HTML代码:
<script type="text/javascript">
$(document).ready(function() {
getDataJS();
$('#loadChat').dataTable();
});
</script>
</head>
<body>
<table id="loadChat" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Dispute Number</th>
<th>Dispute Status</th>
<th>Start Date</th>
<th>Customer Name</th>
<th>DRO</th>
<th>Dispute Manager</th>
</tr>
</thead>
<tbody>
2)getDataJS()
函数用于从数据库中获取数据。
该功能还可以将数据放入适当的格式和放大器中。发送如下数据。
$("#loadChat").append(HTMLDATA);
该页面能够以数据表格式加载数据,但搜索,排序和放大其他功能无效
如何在这种设置中完成这项工作?
谢谢......约翰逊