gpt4 book ai didi

jquery - 确定元素是否是其父元素的最后一个子元素

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

使用 jQuery,有没有一种快速知道元素是否是其父元素的最后一个子元素的方法?

例子:

<ul>
<li id="a"></li>
<li id="b"></li>
<li id="c"></li>
</ul>

$('#b').isLastChild(); //should return FALSE
$('#c').isLastChild(); //should return TRUE

最佳答案

使用:last-child选择器与 .is()

$('#c').is(':last-child')

关于jquery - 确定元素是否是其父元素的最后一个子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4209605/

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