我正在使用 next() 函数显示一系列元素。一旦我到达终点,我想去第一个元素。有任何想法吗?
这是代码:
//Prev / Next Click
$('.nextSingle').click( function() {
//Get the height of the next element
var thisHeight = $(this).parent().parent().parent().next('.newsSingle').attr('rel');
//Hide the current element
$(this).parent().parent().parent()
.animate({
paddingBottom:'0px',
top:'48px',
height: '491px'
}, 300)
//Get the next element and slide it in
.next('.newsSingle')
.animate({
top:'539px',
height: thisHeight,
paddingBottom:'100px'
}, 300);
});
基本上我需要一个“if”语句,上面写着“如果没有剩余的‘下一个’元素,那么找到第一个。
谢谢!