嗨,我是使用 http://snook.ca/archives/javascript/simplest-jquery-slideshow 所以基本上代碼,我現在做了一個腳本獲取當前指數的jQuery
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');
},
6000);
});
我不知道是否有可能得到,顯示在當前圖像的索引無論如何?
這工作完美! – Breezer 2010-09-23 14:01:20