var arr = $("#w01 > img").toArray(); // array created from images in a div
$('.btns .next').click(function(){
var first = arr[0];
arr.push(arr.shift(first)); //moves the first image at the bottom of the stack
$(arr[0]).show(); //shows the next image
});
它可以工作,但是當到達最後一個圖像時,過程停止,而不是再次顯示第一個圖像,無限循環!在第一個循環後停止循環一組圖像
Guffa,優秀,它的工作原理,非常感謝。 – bonaca