jQuery在prev中找到相同的td.和下一行

前端之家收集整理的这篇文章主要介绍了jQuery在prev中找到相同的td.和下一行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一张桌子,我知道如何搜索下一个和上一个TD,但是如何在下一个和之前的TR上进行搜索
012
345 <- example,I clicked on 4,it checks 3 and 5,but how to check on 0,1,2 and 6,7,8?
678
$(document).ready(function() {
    $("td").click(function() {

        var x = $(this).next().css('backgroundColor');
        var y = $(this).prev().css('backgroundColor');

        if (x == 'rgb(255,0)' || y == 'rgb(255,0)') {
            return;
        } else {
            $(this).css('backgroundColor','red');
        }
    });
});

解决方法

我做了一些研究,并提出了一个有效的工作解决方案.谢谢大家的帮助:
$(this).parent().next().find('td').eq($(this).index()-1).css('backgroundColor');
原文链接:https://www.f2er.com/jquery/177994.html

猜你在找的jQuery相关文章