前端之家收集整理的这篇文章主要介绍了
jQuery:如何检查元素是否是最后一个兄弟?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何检查元素是否是最后一个兄弟?
对于连续的最后一个单元格,我想执行不同的操作.
这不起作用:
$('td').each(function(){
var $this = $(this);
if ( $this === $this.parent().last('td') )
{
alert('123');
}
})
如果我删除.parent(),它也不会.
尝试
$('tr td:last-child').each(function(){
var $this = $(this);
alert('123');
});
原文链接:https://www.f2er.com/jquery/181156.html