任何想法为什么我的jQuery不会执行?

时间:2011-08-30 01:06:43

标签: javascript jquery rotator

我开始为一个项目建立一个推荐旋转器。奇怪的是它在它实现之前就已经崩溃了(之前测试过)并且我决定废弃它并编写一个新的脚本来执行相同的任务。我对jQuery比较陌生,我不熟悉使用三元运算符,但我想给它一个机会。

以下代码就是我正在使用的代码。我相信这段代码应该正确执行,但是如果你要把它全部复制到一个新的.html文档中,你会发现它没有。

我正在寻找能得到的任何帮助。我一直在努力成长为开发者 - 我不是盲目复制和粘贴以获得结果的人。我想知道发生了什么:)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

    <title>Rotator Testing</title>

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>

    <style type="text/css">
        #testimonials{
            width:300px;
            height:100px;
            background:#666;
            position:absolute;
            top:0;left:0;
        }
        .testimonial{
            color:#CCC;
            display:block;
            width:200px;
            height:30px;
            background:#333;
            position:absolute;
            left:0;top:0;
            z-index:5;
        }
        .show{
            z-index:10;
        }
    </style>

    <script type="text/javascript">
        $(document).ready(function(){
            $('.testimonial').css({opacity: 0.0});
            $('.testimonial:first').css({opacity:1.0});
            setInterval(function(){

                var current = ( $('#testimonials .testimonial.show')? $('#testimonials .testimonial.show') : $('#testimonials .testimonial:first'));
                var next = current.next().length ? $('#testimonials .testimonial:first') : current.next();

                //Set the fade in effect for the next testimonial, show class has higher z-index
                next.css({opacity: 0.0})
                .addClass('show')
                .animate({opacity: 1.0}, 1000);

                //Hide the current testimonial
                current.animate({opacity: 0.0}, 1000)
                .removeClass('show');


            },2000);
        });
    </script>



</head>

<body>

    <div id="testimonials">
        <article class="testimonial">Testimonial 1</article>
        <article class="testimonial">Testimonial 2</article>
        <article class="testimonial">Testimonial 3</article>
        <article class="testimonial">Testimonial 4</article>
    </div>

</body>
</html>

1 个答案:

答案 0 :(得分:3)

var current = ( $('#testimonials .testimonial.show')? $('#testimonials .testimonial.show') : $('#testimonials .testimonial:first'));

jQuery将始终返回一个对象(即使选择器与任何元素都不匹配),所以你的条件是:

$('#testimonials .testimonial.show')

......永远都是真的。

检查长度:

   var current = ( $('#testimonials .testimonial.show').length)
                    ? $('#testimonials .testimonial.show') 
                    : $('#testimonials .testimonial:first');

下一期:

var next = current.next().length ? $('#testimonials .testimonial:first') : current.next();

我猜您需要将其切换为:

var next = (!current.next().length) 
            ? $('#testimonials .testimonial:first') 
            : current.next();

目前,如果它为空,则选择.next()。