jQuery 确定元素是否是其父元素的最后一个子元素
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/4209605/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-26 16:50:06 来源:igfitidea点击:
Determining if the element is the last child of its parent
提问by cambraca
Using jQuery, is there a quick way of knowing if an element is its parent's last child?
使用 jQuery,是否有一种快速的方法可以知道一个元素是否是其父元素的最后一个子元素?
Example:
例子:
<ul>
<li id="a"></li>
<li id="b"></li>
<li id="c"></li>
</ul>
$('#b').isLastChild(); //should return FALSE
$('#c').isLastChild(); //should return TRUE
回答by Rafael
回答by Nick Craver
You can use .is()
with :last-child
like this:
您可以使用.is()
具有:last-child
这样的:
$('#b').is(":last-child"); //false
$('#c').is(":last-child"); //true
You can test it here. Another alternative is to check .next().length
, if it's 0
it's the last element.
你可以在这里测试。另一种选择是检查.next().length
,如果它0
是最后一个元素。
回答by Jonatan Littke
if($('#b').is(":last-child")){
}