如何在 jQuery 中选择 ul li
我在 jQuery 中有一个 ul li,我想从我制作的 ul 中选择最后一个 li 就像
<ul>
<!-- many li here --->
<li><a id="nqp2" class="apager" href="/2">
next</a></li>
</ul>
如何在 jQuery 中不使用 :last 来选择最后一个 div 一样,
可以使用以下内容:>
从字符“n”开始的id,就像他们总是有从“n”开始的id,而所有其他的没有从
我要选择的最后一个 li 中总是有单词 next。
他们有什么方法可以使用这两种选择模式的任何方式来选择 li
i have a ul li in jQuery and i want to select last li from the ul i make
like
<ul>
<!-- many li here --->
<li><a id="nqp2" class="apager" href="/2">
next</a></li>
</ul>
how to select last div here without using :last in jQuery
the following thing can be used :>
the id starting from char "n" like they always have id starting from "n" and all other not have these char starting from.
the last li i want to select always have word next inside them.
are their any way to select li using any way of these two selection pattern
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用第一种方法:
使用第二种方法:
Using your first method:
Using your second method:
使用 jQuery,您可以使用类和 id 来选择元素,就像 CSS 一样。在这种情况下,你的最后一个 li 有一个类,所以:
如果你要使用 jQuery/CSS 选择它,最好总是添加一个类或 id :)
With jQuery you can use classes and ids to select elements, same as CSS. In this case your last li has a class so:
It's best to always add a class or id if you'll be selecting it with jQuery/CSS :)
Jquery 选择器:
$('ul li:last-child')
Jquery selector:
$('ul li:last-child')