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