以下是我对JQuery数据表的问题摘要。
一个。我的JSP页面包含以下内容:
<script type="text/javascript" src="../include/jquery.dataTables.js"></script>
<script>
$(document).ready(function() {
$('#snapTable').dataTable({
"iDisplayLength": 5,
"bPaginate": true
} );
} )
:
function checkSnapStatus() {
var url = "...."; // some JSP servlet return HTML table id = 'snapTable'. HTML has a div called progress_bar
$.get(url, function(xml) {
$('#statuscontent').html(xml); // Put the return HTML into div id='statuscontent' on the body element
var object = $('div.progress_bar'); // Get the div id=progress_bar elements =
$.each(object, function() {
//process some stuff
});
});
}
湾从body.onload调用checkSnapStatus函数。 $ .get函数之后,会显示记录(很多),但没有分页。我没有看到上一个或下一个按钮。
答案 0 :(得分:1)
您使用的是哪个版本的数据表和jquery?我使用jquery 1.6.4和datatables 1.9.0及以下作品 -
$('#snapTable').dataTable({
"bJQueryUI" : true,
"iDisplayLength" : 5,
"sDom" : 'T<"clear">lfrtip'
});