gpt4 book ai didi

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

转载 作者:技术小花猫 更新时间:2023-10-29 10:59:24 25 4
gpt4 key购买 nike

我有一张表,我知道如何搜索下一个和上一个 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, 0)' || y == 'rgb(255, 0, 0)') {
return;
} else {
$(this).css('backgroundColor', 'red');
}
});
});

最佳答案

我进行了一些研究并提出了一个可行的解决方案。感谢大家的帮助:

$(this).parent().next().find('td').eq($(this).index()-1).css('backgroundColor');

关于jQuery 在 prev 中找到相同的 td。和下一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9726111/

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