jQuery 如果只有一项会淡出它,这是错误的
我有这个代码:
function fadeLi(elem) {
elem
.delay()
.fadeIn()
.delay(5000)
.fadeOut(1000, function () {
if (elem.next().length > 0) {
fadeLi(elem.next());
} else {
fadeLi(elem.siblings(":first"));
}
});
}
jQuery(function () {
jQuery("#couponList li").hide();
fadeLi(jQuery("#couponList li:first"));
});
它应该淡出最后一个项目并淡入下一个项目。我的问题是,如果只有一个项目,那么它就会淡出并且不会再次显示该项目。如果列表中只有一项,那么它应该只显示一项,而不是淡出任何内容。请问我该怎么做?
I have this code:
function fadeLi(elem) {
elem
.delay()
.fadeIn()
.delay(5000)
.fadeOut(1000, function () {
if (elem.next().length > 0) {
fadeLi(elem.next());
} else {
fadeLi(elem.siblings(":first"));
}
});
}
jQuery(function () {
jQuery("#couponList li").hide();
fadeLi(jQuery("#couponList li:first"));
});
and it is supposed to fade out the last item and fade in next item. My problem is if there is just one item then it fades it out and it does not display the item again. If there is only one item in the list then it should just display the one item and not fade anything out. How can I do that please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以这样做:
如果该元素没有任何同级元素,则会显示该元素。
演示
You can do it like this:
This will show the element if it does not have any siblings.
Demo