使用 jQuery 遍历无序列表
这应该很简单,但我在网上找不到太多内容:
我有一个无序列表
>,我想解决列表中的每一个问题,并采取行动。我怎样才能使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 each() 来实现此目的。
例如
You could use each() for this.
E.g.
与此接近的东西:
Something close to this:
使用此代码并根据需要更改 id。
Use this code and change id as appropriate.