我的html頁面包含ajax,它有助於動態創建表格。如何引入使用javascript動態html表的分頁和排序?
<title>Clients</title>
</head>
<body>
<table style="width:100%" id="clients_data">
<caption>Clients</caption>
<tr>
<th>Clients</th>
<th>Number of Sites</th>
<th>Reset the Processing</th>
</tr>
</table>
<script>
var myTable;
$(document).ready(function() {
loadCustomers();
});
function loadCustomers() {
$.ajax({
type: 'GET',
url: 'http://localhost:8080/cache/getCustomers',
dataType: 'json',
success: function(data) {
var rows = [];
$.each(data,function(id,value) {
rows.push('<tr><td><a href="clientSiteInfo.html?client='+id+'">'+id+'</td><td>'+value+'</td><td><button type="button" onclick="reset(\''+id+'\')">Reset</td></tr>');
});
$('#clients_data').append(rows.join(''));
}
});
};
</script>
</body>
</html>
在運行時,我可能有100行填充在表中。我怎樣才能添加分頁,使用jQuery對這張表進行排序?
由於該教程是非常有幫助的。在上面的指南中,我正在面對一個數據庫中的bug。我在這裏發佈了新的問題。可以嗎?請檢查?https://stackoverflow.com/questions/46780285/datatable-pagination-is-not-working – Ratha