私はテーブルを持っていて、次に検索する方法を知っています。TD
ですが、次の前にそれを行う方法はTR
ですか?jQueryは前のtdと同じです。次の行
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');
}
});
});
あなたのHTMLがわから – DG3
切り捨てではなく、 '$(この).parentを()してみてくださいPREV()' – MilkyWayJoe