jQuery无限滑块插件

时间:2012-09-11 10:09:55

标签: javascript jquery

我正在做一个噩梦,试图让插件使用我的脚本。

似乎在页面加载时,jQuery选择器没有看到我的div,因为根本没有任何事情发生。

它应该是一个可以向左和向右滚动的简单图像行。

我把我的所有代码放在这里的一个页面上,如果有人对什么有什么错误的建议我非常感谢它!谢谢!

http://liamg.co.uk/test.html


值得注意的是,控制台不会抛出任何错误

2 个答案:

答案 0 :(得分:0)

jQuery(sliderList).children().outerWidth("true")尝试在没有引号(jQuery(sliderList).children().outerWidth(true))的情况下输入。

答案 1 :(得分:0)

在你的页面中,你接到了一个电话:

    var increment = jQuery(sliderList).children().outerWidth("true")

应该是:

    var increment = jQuery(sliderList).children().outerWidth(true)

(注意缺少关于true的引号)