如何使用JQuery遍历将列特定类添加到下表中? (在我的案例的最后一栏)
我开始用一些沿着
的方式无所事事地掠过像我说的那样,绝望地说。请给我一些帮助。$('#本身份识别码 。TR')的儿童( “TD:否(:第一)”。)addClass( “ME”);
<table id="myID" class="myClass">
<tr>
<th>one</th>
<th>two</th>
<th>three</th>
<th>four</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<th>3</th>
<th>4</th>
</tr>
<tr>
<td>a</td>
<td>b</td>
<th>c</th>
<th>d</th>
</tr>
</table>
SOLUTION:
$('#myID tr')。children(“td:nth-last-of-type(1)”)。addClass(“me”);
答案 0 :(得分:2)
尝试使用first-of-type
$('#myID tr').children("td:not(:first-of-type)").addClass("me");
$('#myID tr').children("td:not(:first-child)").addClass("me");