0

我试过的代码是

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();        
    });    
});

我想限制元素,但是当我点击更多时,什么都不会发生。

4

1 回答 1

1

主要问题是您正在定义Index变量并currentIndex在下一行中使用,这当然会引发错误,否则您的代码应该可以工作。但是,您可以缓存元素并使用.slice()提高代码效率的方法。

jQuery(function ($) {
    var visible = 3,
            $li = $('#sc li');

    // hiding the elements
    $li.slice(visible).hide();

    $('#more').on('click', function () {
        // getting index of the last visible element
        var ci = $li.filter(':visible:last').index();
        // slicing and showing next should-be-visible elements
        $li.hide().slice(++ci, ci+visible).show();
    });
});

http://jsfiddle.net/xRPQj/

于 2013-09-25T06:56:52.617 回答