jQuery 如果只有一项会淡出它,这是错误的

发布于 2025-01-11 02:11:58 字数 501 浏览 0 评论 0原文

我有这个代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2025-01-18 02:11:58

您可以这样做:

if (elem.siblings().length == 0) {
  elem.show()
} else {...

如果该元素没有任何同级元素,则会显示该元素。

演示

function fadeLi(elem) {
  if (elem.siblings().length == 0) {
    elem.show()
  } else {
    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"));
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul id="couponList">

  <li>test1</li>

</ul>

You can do it like this:

if (elem.siblings().length == 0) {
  elem.show()
} else {...

This will show the element if it does not have any siblings.

Demo

function fadeLi(elem) {
  if (elem.siblings().length == 0) {
    elem.show()
  } else {
    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"));
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul id="couponList">

  <li>test1</li>

</ul>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文