怎么讓分頁(yè)不相互影響呢?? $.each($('.results_comment'), function(index, value) {? var show_per_page = 1; //每頁(yè)顯示幾條數(shù)據(jù)??? var number_of_items = $('.results_comment').eq(index).children().size(); //獲取總長(zhǎng)度長(zhǎng)度??? var number_of_pages = Math.ceil(number_of_items / show_per_page);??? $('#current_page').eq(index).val(0);??? $('#show_per_page').eq(index).val(show_per_page); //5??? var navigation_html = '<a class="previous_link" href="javascript:previous();">上一頁(yè)</a>';??? var current_link = 0; //變量??? while (number_of_pages > current_link) {??????? navigation_html += '<a class="page_link" href="javascript:go_to_page(' + current_link + ')" longdesc="' + current_link + '">' + (current_link + 1) + '</a>';??????? current_link++;??? }??? navigation_html += '<a class="next_link" href="javascript:next();">下一頁(yè)</a>';??? $('.page_navigation').eq(index).html(navigation_html);??? $('.page_navigation .page_link:first').eq(index).addClass('active_page');??? $('.results_comment').eq(index).children().css('display', 'none');??? $('.results_comment').eq(index).children().slice(0, show_per_page).css('display', 'block');??? // 分頁(yè)結(jié)束??? });/ 分頁(yè)方法function previous() {??? new_page = parseInt($('#current_page').val()) - 1;??? if ($('.active_page').prev('.page_link').length == true) {??????? go_to_page(new_page);??? }}function next() {??? new_page = parseInt($('#current_page').val()) + 1;??? if ($('.active_page').next('.page_link').length == true) {??????? go_to_page(new_page);??? }}function go_to_page(page_num) {??? var show_per_page = parseInt($('#show_per_page').val());??? start_from = page_num * show_per_page;??? end_on = start_from + show_per_page;?? ??? ??? ??? ? $('.results_comment').children().css('display', 'none').slice(start_from, end_on).css('display', 'block');?? ?? ???? $('.page_link[longdesc=' + page_num + ']').addClass('active_page').siblings('.active_page').removeClass('active_page');??? $('#current_page').val(page_num);}// 分頁(yè)方法
一個(gè)頁(yè)面有多個(gè)分頁(yè),相互影響
光腳大仙人
2016-11-11 11:19:43