如何在 jQuery 中选择 ul li

发布于 2024-10-15 08:05:38 字数 443 浏览 1 评论 0原文

我在 jQuery 中有一个 ul li,我想从我制作的 ul 中选择最后一个 li 就像

<ul>
   <!-- many li here --->
   <li><a id="nqp2" class="apager" href="/2">
        next</a></li>
</ul>

如何在 jQuery 中不使用 :last 来选择最后一个 div 一样,

可以使用以下内容:>

  1. 从字符“n”开始的id,就像他们总是有从“n”开始的id,而所有其他的没有从

  2. 我要选择的最后一个 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 :>

  1. the id starting from char "n" like they always have id starting from "n" and all other not have these char starting from.

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

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

发布评论

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

评论(3

猛虎独行 2024-10-22 08:05:38

使用第一种方法:

$('li:has(a[id^="n"])')

使用第二种方法:

$('li:contains("next")')

Using your first method:

$('li:has(a[id^="n"])')

Using your second method:

$('li:contains("next")')
老旧海报 2024-10-22 08:05:38

使用 jQuery,您可以使用类和 id 来选择元素,就像 CSS 一样。在这种情况下,你的最后一个 li 有一个类,所以:

$function (){
    $(".apager")... (rest of your jQuery)

如果你要使用 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:

$function (){
    $(".apager")... (rest of your jQuery)

It's best to always add a class or id if you'll be selecting it with jQuery/CSS :)

稀香 2024-10-22 08:05:38

Jquery 选择器:$('ul li:last-child')

Jquery selector: $('ul li:last-child')

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