【发布时间】:2018-03-12 06:43:45
【问题描述】:
我正在使用 jQuery 数据表来显示内置响应式和分页的表格。 我正在使用 ajax 动态调用的 javascript
我的桌子看起来像
var xmlhttp = new XMLHttpRequest();
var url = '/../view_history/' + userId + '/' + networkId ;
xmlhttp.open('GET', url, true);
xmlhttp.send();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState === 4) {
if (xmlhttp.status === 200) {
var json_data = JSON.parse(xmlhttp.responseText);
var result = json_data.result;
if (result == 'success') {
/* Proceess using for loop data and then append that dynamic data in <tbody> */
document.getElementById('deposit').innerHTML += sr + emaili + coini + address + '</td><td>' + txnhash.substring(0, 12) + '...' + '</td><td>' + amount + '</td><td>' + txn_fee + '</td><td>' + Net_bal + '</td><td>' + time + '</td></tr>'
}
}
}
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table id="example1" class="table table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>Email Id</th>
<th>Network</th>
<th>Type</th>
<th>Address</th>
<th>Transaction</th>
<th>Amount</th>
<th>Txn Fee</th>
<th>Net_Bal</th>
<th>Time</th>
</tr>
</thead>
<tbody id='deposit'>
</tbody>
</table>
并调用jquery DataTable函数如下。
<script>
$(function() {
$('#example1').DataTable();
});
</script>
它显示所有记录,但它没有响应,分页,排序根本不起作用。请帮我解决这个问题。
【问题讨论】:
-
按
F12打开浏览器控制台窗口。检查您的浏览器控制台以获取更多信息。如果您发现记录的任何错误,请在此处发布。这将有助于更好地了解您的问题。 -
你能在 json_data 或 console.log(json_data ) 中发布 wt 吗?它来了
-
我的 json_data 包含 "{result: "success", deposit_data: Array(27)}"
标签: javascript ajax datatable