$('.ip_button').click(function(){
var buttonValue, slideTimes;
buttonValue = $(this).html();
slideTimes = parseInt(buttonValue) - 1;
for (var i = 0 ; i < slideTimes; i++) {
slider.gallery_next();
}
});
嗨,我正在尝试使用确定按钮 -1 的值并多次运行幻灯片的函数在滑块上滑动多个图像。不幸的是,无论按钮中的值是什么,函数都只会执行一次。按钮中的当前值为:
<button class="ip_button">5</button>
gallery_next() 的函数;被封装并如下所示:
this.gallery_next = function() {
if (galleryRotating) { return; }
galleryRotating = true;
var elem = $(galleryId + " > li").first();
$(galleryId).append(elem.clone());
$(galleryId).animate({"left" : -imgWidth}, 650, function() {
elem.remove();
galleryRotating = false;
$(galleryId).css({"left" : 0});
});