我正在该转盘中使用转盘如果有两个项目,则重复项目。任何人都可以帮助您避免重复项目。请检查我的代码并提供链接
$(document).ready(function(){
$('.carousel[data-type="multi"] .item').each(function(){
var next = $(this).next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
for (var i=0;i<4;i++) {
next=next.next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
});