var len = imgs.length,
index = 0;
$.preload(imgs, {
order: 'ordered'
});
$('.btn').on('click',function() {
if('prev' === $(this).data('control')) { // 上一张
index = Math.max(0, --index);
}else{ // 下一张
index = Math.min(len - 1,++index);
}
document.title = (index +1) + '/' + len;
$('#img').attr('src' , imgs[index]);
});
点击 上一张的时候,又重新加载图片了,是怎么回事?
点击上一张后,开始重复加载图片了