我有一个学生列表,我添加了分页,因此每页显示10个。
我动态添加了输入和搜索按钮。我还实现了点击搜索学生并显示匹配。
我遇到的问题是它只搜索当前页面的学生,所以如果我想从第5页搜索学生,虽然它在列表中,但它不会找到它。
$( '.button' ).on( "click", function() {
var inputValue = $('.input').val();
console.log(inputValue);
$('.input').val(' ');
$('.student-item').hide();
$('.student-item').each(function(){
if($(this).text().toUpperCase().indexOf(inputValue.toUpperCase()) != -1){
$(this).show();
}
});
});
这是我用于分页的插件: / * * jQuery easyShare插件 * 2017年4月4日更新 *版本1.2 * *根据GPL http://en.wikipedia.org/wiki/GNU_General_Public_License获得许可 *版权所有(c)2008,St?hane Litou * 版权所有。 * 该程序是免费软件:您可以重新分发和/或修改 它是根据GNU通用公共许可证的条款发布的 自由软件基金会,许可证的第3版,或 (根据您的选择)任何更高版本。
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function($){
$.fn.easyPaginate = function (options) {
var defaults = {
paginateElement: 'li',
hashPage: 'page',
elementsPerPage: 10,
effect: 'default',
slideOffset: 200,
firstButton: true,
firstButtonText: '<<',
lastButton: true,
lastButtonText: '>>',
prevButton: true,
prevButtonText: '<',
nextButton: true,
nextButtonText: '>'
}
return this.each (function (instance) {
var plugin = {};
plugin.el = $(this);
plugin.el.addClass('easyPaginateList');
plugin.settings = {
pages: 0,
objElements: Object,
currentPage: 1
}
var getNbOfPages = function() {
return Math.ceil(plugin.settings.objElements.length / plugin.settings.elementsPerPage);
};
var displayNav = function() {
htmlNav = '<div class="easyPaginateNav">';
if(plugin.settings.firstButton) {
htmlNav += '<a href="#'+plugin.settings.hashPage+':1" title="First page" rel="1" class="first">'+plugin.settings.firstButtonText+'</a>';
}
if(plugin.settings.prevButton) {
htmlNav += '<a href="" title="Previous" rel="" class="prev">'+plugin.settings.prevButtonText+'</a>';
}
for(i = 1;i <= plugin.settings.pages;i++) {
htmlNav += '<a href="#'+plugin.settings.hashPage+':'+i+'" title="Page '+i+'" rel="'+i+'" class="page">'+i+'</a>';
};
if(plugin.settings.nextButton) {
htmlNav += '<a href="" title="Next" rel="" class="next">'+plugin.settings.nextButtonText+'</a>';
}
if(plugin.settings.lastButton) {
htmlNav += '<a href="#'+plugin.settings.hashPage+':'+plugin.settings.pages+'" title="Last page" rel="'+plugin.settings.pages+'" class="last">'+plugin.settings.lastButtonText+'</a>';
}
htmlNav += '</div>';
plugin.nav = $(htmlNav);
plugin.nav.css({
'width': plugin.el.width()
});
plugin.el.after(plugin.nav);
var elSelector = '#' + plugin.el.get(0).id + ' + ';
$(elSelector + ' .easyPaginateNav a.page,'
+ elSelector + ' .easyPaginateNav a.first,'
+ elSelector + ' .easyPaginateNav a.last').on('click', function(e) {
e.preventDefault();
displayPage($(this).attr('rel'));
});
$(elSelector + ' .easyPaginateNav a.prev').on('click', function(e) {
e.preventDefault();
page = plugin.settings.currentPage > 1?parseInt(plugin.settings.currentPage) - 1:1;
displayPage(page);
});
$(elSelector + ' .easyPaginateNav a.next').on('click', function(e) {
e.preventDefault();
page = plugin.settings.currentPage < plugin.settings.pages?parseInt(plugin.settings.currentPage) + 1:plugin.settings.pages;
displayPage(page);
});
};
var displayPage = function(page, forceEffect) {
if(plugin.settings.currentPage != page) {
plugin.settings.currentPage = parseInt(page);
offsetStart = (page - 1) * plugin.settings.elementsPerPage;
offsetEnd = page * plugin.settings.elementsPerPage;
if(typeof(forceEffect) != 'undefined') {
eval("transition_"+forceEffect+"("+offsetStart+", "+offsetEnd+")");
}else {
eval("transition_"+plugin.settings.effect+"("+offsetStart+", "+offsetEnd+")");
}
plugin.nav.find('.current').removeClass('current');
plugin.nav.find('a.page:eq('+(page - 1)+')').addClass('current');
switch(plugin.settings.currentPage) {
case 1:
$('.easyPaginateNav a', plugin).removeClass('disabled');
$('.easyPaginateNav a.first, .easyPaginateNav a.prev', plugin).addClass('disabled');
break;
case plugin.settings.pages:
$('.easyPaginateNav a', plugin).removeClass('disabled');
$('.easyPaginateNav a.last, .easyPaginateNav a.next', plugin).addClass('disabled');
break;
default:
$('.easyPaginateNav a', plugin).removeClass('disabled');
break;
}
}
};
var transition_default = function(offsetStart, offsetEnd) {
plugin.currentElements.hide();
plugin.currentElements = plugin.settings.objElements.slice(offsetStart, offsetEnd).clone();
plugin.el.html(plugin.currentElements);
plugin.currentElements.show();
};
var transition_fade = function(offsetStart, offsetEnd) {
plugin.currentElements.fadeOut();
plugin.currentElements = plugin.settings.objElements.slice(offsetStart, offsetEnd).clone();
plugin.el.html(plugin.currentElements);
plugin.currentElements.fadeIn();
};
var transition_slide = function(offsetStart, offsetEnd) {
plugin.currentElements.animate({
'margin-left': plugin.settings.slideOffset * -1,
'opacity': 0
}, function() {
$(this).remove();
});
plugin.currentElements = plugin.settings.objElements.slice(offsetStart, offsetEnd).clone();
plugin.currentElements.css({
'margin-left': plugin.settings.slideOffset,
'display': 'block',
'opacity': 0,
'min-width': plugin.el.width() / 2
});
plugin.el.html(plugin.currentElements);
plugin.currentElements.animate({
'margin-left': 0,
'opacity': 1
});
};
var transition_climb = function(offsetStart, offsetEnd) {
plugin.currentElements.each(function(i) {
var $objThis = $(this);
setTimeout(function() {
$objThis.animate({
'margin-left': plugin.settings.slideOffset * -1,
'opacity': 0
}, function() {
$(this).remove();
});
}, i * 200);
});
plugin.currentElements = plugin.settings.objElements.slice(offsetStart, offsetEnd).clone();
plugin.currentElements.css({
'margin-left': plugin.settings.slideOffset,
'display': 'block',
'opacity': 0,
'min-width': plugin.el.width() / 2
});
plugin.el.html(plugin.currentElements);
plugin.currentElements.each(function(i) {
var $objThis = $(this);
setTimeout(function() {
$objThis.animate({
'margin-left': 0,
'opacity': 1
});
}, i * 200);
});
};
plugin.settings = $.extend({}, defaults, options);
plugin.currentElements = $([]);
plugin.settings.objElements = plugin.el.find(plugin.settings.paginateElement);
plugin.settings.pages = getNbOfPages();
if(plugin.settings.pages > 1) {
plugin.el.html();
// Here we go
displayNav();
page = 1;
if(document.location.hash.indexOf('#'+plugin.settings.hashPage+':') != -1) {
page = parseInt(document.location.hash.replace('#'+plugin.settings.hashPage+':', ''));
if(page.length <= 0 || page < 1 || page > plugin.settings.pages) {
page = 1;
}
}
displayPage(page, 'default');
}
});
};
})(jQuery);
我在ul中添加了id =“easyPaginate”以将分页添加到我的列表中