JS滑块上的分页问题

时间:2011-10-27 10:57:35

标签: javascript jquery slider

我使用jquery设置了一个JS滑块: http://jsfiddle.net/indigoclothing/H4MW9/21/

除了分页链接(即1,2,3)不起作用外,它运行良好。

我使用了这个教程http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/但是必须将$更改为jQuery,因为它与另一个脚本冲突。

请指点什么?

1 个答案:

答案 0 :(得分:2)

你最后一次事件分配中的错字:

jQuery(".paging a").click(function() {    
        jQueryactive = jQuery(this); //Activate the clicked paging
        //Reset Timer
        clearInterval(play); //Stop the rotation
        rotate(); //Trigger rotation immediately
        rotateSwitch(); // Resume rotation
        return false; //Prevent browser jump to link anchor
    });  

jQueryactive应为$active,因此功能应为:

jQuery(".paging a").click(function() {    
        $active = jQuery(this); //Activate the clicked paging
        //Reset Timer
        clearInterval(play); //Stop the rotation
        rotate(); //Trigger rotation immediately
        rotateSwitch(); // Resume rotation
        return false; //Prevent browser jump to link anchor
    });