jQuery show / hide循环遍历表

时间:2010-02-25 12:50:47

标签: jquery animation

我需要设置jquery来遍历表格,确保它显示/隐藏正确的表格。

基本的HTML结构是:

<p><a href="#" class="month-next">Next Month</a></p>

<table class="month-show"><tr><td>blurb</td></tr></table>
<table class="month-hide"><tr><td>blurb</td></tr></table>
<table class="month-hide"><tr><td>blurb</td></tr></table>
<table class="month-hide"><tr><td>blurb</td></tr></table>

所以到目前为止我在jQuery中有:

$(".month-next").click(function () {
 $("table.month-show").hide();
 HERE I NEED SOME CODE TO ONLY SHOW THE NEXT TABLE IN THE HTML .show();
 return false;
});

4 个答案:

答案 0 :(得分:4)

$(".month-next").click(function () {
 $("table.month-show").hide().next().show();
 return false;
});

您可能还想更改这些类,以便下一个调用也可以正常运行(编辑插入的更改由 Mark Schultheiss 建议):< / p>

$(".month-next").click(function () {
    $("table.month-show")
        .hide()
        .removeClass("month-show")
        .addClass("month-hide")
        .next()
        .show()
        .removeClass("month-hide")
        .addClass("month-show");
    if ($("table").hasClass('month-show').length < 1) {
        $('table').eq(0).addClass('month-show');
    }
 return false;
});

答案 1 :(得分:2)

这是我如何做的一个有效例子:http://jsbin.com/ogika

CSS:

.month.hide { display: none; }

HTML

<p><a href="#" class="month-next">Next Month</a></p>

<table class="month"><tr><td>a</td></tr></table>
<table class="month hide"><tr><td>b</td></tr></table>
<table class="month hide"><tr><td>c</td></tr></table>
<table class="month hide"><tr><td>d</td></tr></table>

JavaScript的:

$(function () {
    $(".month-next").click(function () {
        var months = $(".month"), numMonths = months.length, curr = 0;
        return function () {
            //Hide the current table, by adding the 'hide' class
            months.eq(curr).addClass("hide"); 

            //Get the index of next table in the list
            curr = (curr + 1) % numMonths;  

            //Show the next table, by removing the 'hide' class
            months.eq(curr).removeClass("hide"); 
        }
    }());
});

在上面的代码中,months是表的列表...在这种情况下,它包含4个元素;而numMonths是元素的数量......即4.

上述代码的“魔力”就是这一行:curr = (curr + 1) % numMonths;

该行获取要显示的下一个元素的索引,并以循环方式工作。

我们举一个例子:

   0     1     2     3
=========================
|  a  |  b  |  c  |  d  |
=========================

现在,假设curr为0:

   0     1     2     3
=========================
|  a  |  b  |  c  |  d  |
=========================
   ^

//curr is currently 0
curr = (curr + 1) % numMonths; //(0 + 1) % 4
//now, curr is 1

   0     1     2     3
=========================
|  a  |  b  |  c  |  d  |
=========================
         ^

执行该行代码后,curr变为1:(0 + 1)%4 = 1.这意味着要显示的元素的下一个索引是1.因此,我们得到下一个元素并通过删除hide类来显示它:months.eq(curr).removeClass("hide");

现在让我们看一下curr是最后一个元素的例子:3

   0     1     2     3
=========================
|  a  |  b  |  c  |  d  |
=========================
                     ^

//curr is currently 3
curr = (curr + 1) % numMonths; //(3 + 1) % 4
//now, curr is 0

   0     1     2     3
=========================
|  a  |  b  |  c  |  d  |
=========================
   ^

如您所见,curr现在为0 ......因此循环继续。

答案 2 :(得分:1)

你走了。这应该工作(甚至照顾骑自行车)。由于tyour页面上的其他标记,您可能需要稍作调整。

<html>
<head>
<script language="javascript" src="jquery-1.3.2.js"></script>

<script language="javascript">
$(document).ready(function(){

    $(".month-next").click(function () {
     var $monthShow = $("table.month-show");
     var $monthNext = $monthShow.next('table.month-hide');
    if($monthNext.length == 0){
        $monthNext = $('table.month-hide:first');
        }
     $monthShow.removeClass('month-show').addClass('month-hide');
     $monthNext.removeClass('month-hide').addClass('month-show');
     return false;
    });

});
</script>
<style type="text/css">
.month-show{ display:block;}
.month-hide{ display:none;}

</style>
</head>
<body>

<p><a href="#" class="month-next">Next Month</a></p>

<table class="month-show"><tr><td>blurb1</td></tr></table>
<table class="month-hide"><tr><td>blurb2</td></tr></table>
<table class="month-hide"><tr><td>blurb3</td></tr></table>
<table class="month-hide"><tr><td>blurb4</td></tr></table>

</body>
</html>

答案 3 :(得分:1)

你可以试试这个:

<script type="text/javascript">
    $(function () {
        $(".month-hide").hide();
        $(".month-next").click(function () {
            $(".month-show+table").addClass("month-show").removeClass("month-hide").show();
            $(".month-show").filter(":first").removeClass("month-show").hide();
        });
    });
</script>