我有一个fiddle让AJAX让这个Data呈现一个表。我的目标是在第一次初始页面加载期间加载仅 10行。
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Account ID</th>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
</table>
$(document).ready(function() {
$('#example').DataTable( {
"bPaginate": true,
"processing": true,
"bServerSide": true,
ajax: {
url: 'https://api.myjson.com/bins/1egsx',
dataSrc: 'data'
},
columns: [
{ data: 'account_id' },
{ data: 'name' },
{ data: 'email' }
],
"deferRender": true,
"deferLoading": 10,
} );
});
我一直在尝试使用datatables JavaScript插件,但它似乎不起作用。
我应该研究一下其他脚本/插件/框架吗?