0

jqueryを使用して、最後のtrのcssをthで変更する方法

$("#mytable tr").has('th').last().parents('tr').css({'color':'blue'});

HTML

<table border="1" id="mytable">
    <tr>
        <th>row 1, cell 1</th>
        <th>row 1, cell 2</th> 
    </tr>
    <tr> 
        <th>row 1, cell 1 - change this</th>
        <th>row 1, cell 2 - change this</th> 
    </tr>
    <tr>
        <td>row 2, cell 1</td>
        <td>row 2, cell 2</td>
    </tr>
</table>
4

2 に答える 2

6

xdazzの答えの代わりに、私は以下を提供します:

$('tr:has(th):last').css('color','blue');

参照:

于 2012-09-18T07:21:56.830 に答える
5

最後のを見つけてthください、そしてその親はtr持っている最後の人でなければなりませんth

$("#mytable th:last").parent().css('color', 'blue');
于 2012-09-18T07:18:34.980 に答える