在IE7中jquery循环不工作/播放

时间:2010-05-07 21:41:47

标签: jquery internet-explorer internet-explorer-7 cycle fade

让jq循环插件在所有其他主流浏览器上运行良好,但是IE7只显示了第一个嵌套元素(一个带有锚点的img),没有淡入淡出/动画。

http://alitedesigns.com/

我在循环的自定义属性之后检查了尾随逗号,对IE为什么不能玩得好的任何想法?

谢谢!

1 个答案:

答案 0 :(得分:0)

您使用局部变量覆盖jQuery主对象:

var jQuery = jQuery.noConflict();

您应该选择任何其他名称并改为使用它:

var jQueryOther = jQuery.noConflict();
jQueryOther(document).ready(function() {
    jQueryOther('.slideshow').cycle({
        fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        speed: 2500,
        timeout: 6000,
        random: 1,
        pause: 1
    });
});