我试过的代码是
jQuery(function($) {
var visible =3;
$('#sc li:gt('+(visible - 1)+')').hide();
$('#more').click(function() {
var Index = $('#sc').children('li:visible:last').index(),
nextIndex = currentIndex + (visible + 1);
$('#sc li').hide();
$('ul li:lt(' + nextIndex + '):gt(' + Index + ')').show();
});
});
我想限制元素,但是当我点击更多时,什么都不会发生。