0
我正在嘗試更改圖像滑塊中與圖片對應的點的顏色。但是,因爲我已經將變量imageCount
定義爲1,所以即使imageCount
隨着圖像的滑動而增加,只有第一個點會發生變化。有沒有辦法解決?動態更改變量
var numImgs = $('#picbox img').length;
var imageCount = 1;
var dotMax = numImgs;
function auto() {
if(imageCount == numImgs) {
currentImage.animate({marginLeft: '0px'});
imageCount = 1;
}
else {
currentImage.animate({marginLeft: '-=850px'});
imageCount++;
}
};
var loopforever = window.setInterval(auto, 5000);
while(dotMax--) {
$('#dots').append('<img class="dot" src="./images/dot.png" width="10px" height="10px" />');
};
$('.dot').each(function(i) {
$(this).attr('id', i+1);
});
$('.dot').each(function(item) {
if($(this).attr('id') == imageCount) {
$(this).attr('src', './images/dotLight.png');
};
});
沒什麼所示的代碼修改'imageCount'和你沒有解釋,預期的行爲。沒有更多的細節,這裏沒有任何人可以做。最後一個'each'循環可能需要在圖像滑塊的事件回調中運行 – charlietfl 2014-10-21 23:45:47