答案 0 :(得分:2)
您需要遍历父td
元素,然后使用.next('td.jz-en')
立即定位td
元素,然后使用.find()
/ .children()
定位{{ 1}}元素。
select
可以使用各种遍历方法.closest('td')
,.parent()
或者,您可以遍历jQuery("td.jz-pl select").change(function() {
jQuery(this).closest('td').next('td.jz-en').find('select').css('background-color','red');
});
,然后tr
所需的元素。
find()