我创建了 mvc 格式的数据表。但是在加载脚本时,它与表数据不匹配,并且不绑定在我的表行中。我的代码如下。
$.ajax({
// my passing value
success: function (data) { // i get the data properly
$('#Table').dataTable().fnClearTable();
$.each(data, function (k, v) {
var ID= v.ID;
var name= v.name;
var batch= v.batch;
$('#Table').dataTable().fnAddData([
ID,
name,
batch
]);
});
}
});
我的桌子:
<table id="Table" width="100%">
<thead>
<tr>
<th>EMP_ID</th>
<th>EMP_name</th>
<th>EMP_batch</th>
</tr>
</thead>
<tbody></tbody>
</table>