我有一張桌子,我知道如何搜索下一個和前TD
,但如何在下一個和前一個TR
?jQuery在prev中找到相同的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 2012-03-15 18:45:17
不知道,但嘗試'$(本).parent()上一個()' – MilkyWayJoe 2012-03-15 18:45:47