$('#pagination-demo').twbsPagination({
totalPages: $("#totalpages").val(),
visiblePages: 6,
next: 'Next',
prev: 'Prev',
initiateStartPageClick: false,
hideOnlyOnePage: false,
onPageClick: function (event, page) {
//fetch content and render here
$('#page-content').text('Page ' + page) + ' content here';
window.location.href = "http://localhost:63379/TestPagination.aspx?page=" + page;
}
});
如果我单击第2页或第3页,等等。它向服务器发出请求,请求页码并获得正确的结果,但是显示第1页的网页的分页处于活动状态。我对twbs分页没有太多的想法。谢谢。