我试图找到正确的选择器,以便在单击任何Hello单元格时将背景更改为蓝色,但如果单击Goodbye则不能.将类添加到Hello单元是一种可能的选择,但不是首选.
$(function() {
$('#myTable td').click(function() {
$('#myTable').addClass('unfocused');
});
});
.unfocused {
background-color: blue;
}
我试过了:
$('#myTable td').not('#otherTable td').click(....
$('#myTable td').not('#otherTable').click(....
而那些不工作.
附上一个小提琴.
最佳答案
好吧,明白了,我觉得你正在为这样的事情做些什么
https://jsfiddle.net/smqdx20x/
$('#myTable th').not($('th > table#otherTable').parent()).not('table#otherTable th')