我有一个名为“rgExpandCol”的类的 td,并且想要更改其中的输入类。下面是我的html:
<tr>
<td class="rgExpandCol">
<input class="rgExpand" ...
</td>
<tr>
我已经尝试过这个 jquery 但我得到 $find 为空:
$(this).closest('td').attr('rgExpand', 'rgCollapse');
编辑 :::
基本上正在使用radgrid
和扩展隐藏的行
$(this).closest('tr').next('tr').css('display', '');
并且 $(this) 在我的网格点击事件中
$("#<%=gv.ClientID%> tr:has(td)").click(function (e) {