0
我有一個畫廊,有prev
& next scrolls
。點擊jQuery移動列表項目
$(document).on('click', '.playlist-gallery > .prev', function() {
$('.playlist-item:first').appendTo(".playlist-gallery");
$('.playlist-item:last').hide().show();
});
$(document).on('click', '.playlist-gallery > .next', function() {
$(".playlist-item:last").prependTo(".playlist-gallery");
$(".playlist-item:first").hide().show();
});
這是爲了刪除第一個列表項,併發送到最後,或者反過來取決於所選的按鈕。
我所看到的是當列表中只有兩個項目時,上面的腳本只是保持重複。幫幫我?