这是我的 html 的样子:
<table border="1">
<th></th>
<th>ID</th>
<th>Name</th>
<tr>
<td><input type="button" value="btn1"><input type="button" value="btn2"></td>
<td>22</td>
<td>Hello</td>
</tr>
<tr>
<td><input type="button" value="btn1"><input type="button" value="btn2"></td>
<td>25</td>
<td>HTML</td>
</tr>
<tr>
<td><input type="button" value="btn1"><input type="button" value="btn2"></td>
<td>45</td>
<td>CSS</td>
</tr>
</table>
基于由asp.net发出的html的这种结构,我只想在每行的第一个btn上添加类。
我尝试使用它,但发生的情况是,甚至 td 的第二个按钮也被选中:
$(function () {
$t = $('#GridView1 td').children().addClass('first');
})
先生/女士,您的回答会很有帮助。谢谢++