为 tablesorter 编写扩展程序..虽然这是我第一次尝试扩展任何js。我在<select>
s&amp;行中有<td>
个$('select').change(function(){
});
个。需要知道这个td所在的列。
当在任何这些选择中更改值时,例如
col
我需要抓住此选项坐的列,以便为('tr.result > td:nth-child('+col+')').each(function(){
设置:
$('select').change(function(){
td = $(this).parent('td');
col = $(td).parent().children().index(td);
});
有没有办法可以从td选择中得到这个?!?
- 解决我的具体问题是:
{{1}}