一个tr里面有多个td,每个td里面都有一个select,现在想给其中一个select绑定change事件时判断其他select(不包括change的select自身)的当前选中值是不是同样的值(ps:所有select的option都是一样的),自己有尝试在select发生change时遍历,each方法却把所有select都遍历出来了,怎么在遍历的时候剔除当前select的值html结构大概是这样<table>
<thead>
</thead>
<tbody>
<tr>
<td>
<select><option>1</option><option></option></select>
</td>
<td>
<select><option>1</option><option>2</option></select>
</td>
<td>
<select><option>1</option><option>2</option></select>
</td>
</tr>
</tbody>
</table>
添加回答
举报
0/150
提交
取消