这是我在使用 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 函数之后,会显示记录(很多),但没有分页。我没有看到上一个或下一个按钮。