使用 jQuery 遍历无序列表

发布于 2024-08-12 06:20:25 字数 184 浏览 3 评论 0原文

这应该很简单,但我在网上找不到太多内容:

我有一个无序列表

    ,下面有一些列表项
  • >,我想解决列表中的每一个问题,并采取行动。我怎样才能使用 jQuery 做到这一点?

谢谢。

This should be an easy one, but I'm not finding much online:

I have an unordered list <ul>, with a few list items underneath it <li>, and I'd like to address each one in the list, and act on it. How can I do this using jQuery?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

大海や 2024-08-19 06:20:25

您可以使用 each() 来实现此目的。

例如

$('ul#id li').each(function(index, element) {
    var li = $(element);
    // ...
});

You could use each() for this.

E.g.

$('ul#id li').each(function(index, element) {
    var li = $(element);
    // ...
});
紧拥背影 2024-08-19 06:20:25

与此接近的东西:

$('#myulid').children('li').each(function(i, n) { alert($(this).html()); });

Something close to this:

$('#myulid').children('li').each(function(i, n) { alert($(this).html()); });
谈下烟灰 2024-08-19 06:20:25

使用此代码并根据需要更改 id。

$("ul#id_of_desired_ul > li").each(function() {
   //do stuff
   // $(this) references each li
});

Use this code and change id as appropriate.

$("ul#id_of_desired_ul > li").each(function() {
   //do stuff
   // $(this) references each li
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文