0

我做了一场噩梦,试图让一个插件与我的脚本一起工作。

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

它应该是一排可以左右滚动的简单图像。

我把我所有的代码都放在了这里的一页上,如果有人对出了什么问题有任何建议,我将不胜感激!谢谢!

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


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

4

2 回答 2

0

In your page, you've got a call:

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

that should be:

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

(note the lack of quotes around true)

于 2012-09-11T10:39:03.960 回答
0

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

于 2012-09-11T10:25:13.413 回答