2

JS Fiddle 位于此处:http: //jsfiddle.net/8nqkA/2/

HTML

<div>
<div class="show">Test 1</div>
<div class="hidden">Test 2</div>
<div class="hidden">Test 3</div>
<div class="hidden">Test 4</div>
</div>

jQuery

$(document).ready(function() {
    myFunc($(".show"));
});

function myFunc(oEle)
{
       oEle.fadeOut('slow', function(){
            if (oEle.next())
            {
                oEle.next().fadeIn('slow', function(){
                   myFunc(oEle.next());
                });
            }
           else
               oEle.siblings(":first").fadeIn('slow', function(){
               myFunc(oEle.siblings(":first"));
               });
        });
}

CSS

.hidden {
    display: none;
}

试图让它在完成后循环回测试 1,但不起作用。只想让它重新开始,这有什么问题?

4

2 回答 2

1

在您的代码中-

$(document).ready(function() {
    myFunc($(".show"));
});

    function myFunc(oEle)
    {
           oEle.fadeOut('slow', function(){
                if (oEle.next().length)
                {
                    oEle.next().fadeIn('slow', function(){
                       myFunc(oEle.next());
                    });
                }
               else
                   oEle.siblings(":first").fadeIn('slow', function(){
                   myFunc(oEle.siblings(":first"));
                   });
            });
    }

在这里查看演示 - http://jsfiddle.net/8nqkA/3/

于 2013-02-21T03:58:46.997 回答
1
if (oEle.next()){ // This needs to be oEle.next().length
    oEle.next().fadeIn('slow', function(){
        myFunc(oEle.next());
    });
}else{ // You should wrap this in a block
    oEle.siblings(":first").fadeIn('slow', function(){
        myFunc(oEle.siblings(":first"));
    });
}

我们测试的原因.length是因为.next()像大多数 jQuery 方法一样,返回 jQuery - 不能直接对其进行测试。你可以把它想象成一个数组,所以这个.length属性为我们提供了当前选择中有多少元素。

我们还应该将您的代码包装else在一个块 ( {..}) 中,因为以下代码跨越多行。

于 2013-02-21T04:04:10.797 回答