我一定错过了一些非常重要的东西,我一直在使用 .parent().parent().parent().. 等来遍历 DOM,并使用 .next().next() 来遍历 DOM。
我知道这是错误的,我需要更可靠的东西,我需要一个选择器,它会从单击的元素 $(this) 向下遍历 DOM,以查看单击的元素是否在具有“last”类的元素内。
div.last > div > table > tr > td > a[THE ITEM CLICKED is in the element last]
和
div > div > table > tr > td > a[THE ITEM CLICKED is not in the element last]
那么如果结果有长度
var isWithinLastRow = [amazingSelector].length;
在这种情况下做其他事情。