gpt4 book ai didi

jquery - 如何在 jQuery 中选择最后一个子元素?

转载 作者:IT王子 更新时间:2023-10-29 03:25:54 24 4
gpt4 key购买 nike

如何在 jQuery 中选择最后一个子元素?

只是最后一个 child ,不是它的后代。

最佳答案

你也可以这样做:

<ul id="example">
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ul>

// possibility 1
$('#example li:last').val();
// possibility 2
$('#example').children().last()
// possibility 3
$('#example li:last-child').val();

:last

.children().last()

:last-child

关于jquery - 如何在 jQuery 中选择最后一个子元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4612794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com