मेरे पास एक टेबल है और मुझे पता है कि अगली और पिछली TD
कैसे खोज करें, लेकिन अगले और पिछले TR
पर इसे कैसे करें?jQuery में समान टीडी ढूंढें। और अगली पंक्ति
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
यकीन नहीं है, लेकिन कोशिश '$ (this) .parent() पिछले()' – MilkyWayJoe