2

我正在为页面中的新闻部分使用新闻自动收报机,并且我想对这些新闻使用 prettyphoto 插件,但是当 <li> 项目改变它们的位置时,任何 jquery 函数都不起作用。

例如,当第一项变为最后一项时,没有一个 jquery 函数不起作用

这是代码

$(document).ready(function(){
    var first = 0;
    var speed = 1000;
    var pause = 3500;

    function removeFirst(){
       first = $('ul#listticker li:first').html();
       $('ul#listticker li:first')
        .animate({opacity: 0}, speed)
        .fadeOut('slow', function() {$(this).remove();});
       addLast(first);
    }

    function addLast(first){
        last = '<li style="display:none">'+first+'</li>';
        $('ul#listticker').append(last)
        $('ul#listticker li:last')
        .animate({opacity: 1}, speed)
        .fadeIn('slow')
    }

    interval = setInterval(removeFirst, pause);

        //Codes above are for the news ticker

    $(".news").click(function(e){
        e.preventDefault(); //I assign news class to links if there is no image for the news on db but it doesn't even work
    });

    $("#newsdiv a[rel^='gallery']").prettyPhoto({
        theme:'light_rounded'
    });
});

以及 php 函数的 HTML 结果

<ul id="listticker">
    <li>
        <img src="http://example.com/m.../k_haber.png"><a href="#" class="news">12.05.2011</a><span class="news-text">Some Title</span>
    </li>
    <li>
        <img src="http://example.com/../some.png"><a href="http://example.com/../news/p_some.jpg" class="news-title" rel="gallery[dd0]"> 12.05.2011</a><span class="news-text">Some Other Title</span>
    </li>
</ul>

知道可能导致此问题的原因或如何解决吗?

编辑
我认为问题是由于 jquery html 选择器而发生的。

4

3 回答 3

0

我意识到 Jquery 函数应该在将要使用的函数中声明,所以最后我找到了解决方案。

这是代码

$(document).ready(function(){
    var first = 0;
    var speed = 1000;
    var pause = 3500;

    function removeFirst(){
       first = $('ul#listticker li:first').html();
       $('ul#listticker li:first')
        .animate({opacity: 0}, speed)
        .fadeOut('slow', function() {$(this).remove();});
       addLast(first);
    }

    function addLast(first){
        last = '<li style="display:none">'+first+'</li>';
        $('ul#listticker').append(last)
        $('ul#listticker li:last')
        .animate({opacity: 1}, speed)
        .fadeIn('slow',function(){
            $("a[rel^='gallery']").click(function() {
                $.prettyPhoto.open($(this).attr("href"),"","");
                return false;
            });
        });
        $(".news").click(function(e){
            e.preventDefault(); 
        });
    }

    interval = setInterval(removeFirst, pause);


    $("#newsdiv a[rel^='gallery']").prettyPhoto({
        theme:'light_rounded'
    });
});
于 2011-05-13T10:53:38.730 回答
0

jQuery 的 ":first" 选择器返回第一个匹配的元素,而不是第一个子元素。尝试使用 :first-child 代替。

于 2011-05-12T18:46:44.633 回答
0

在 dom 就绪事件之外获取变量和函数声明。http://jsfiddle.net/jfahv/

于 2011-05-12T18:35:44.843 回答