2

HTML:

<table id="table">
    <thead>

    </thead>
    <tbody>
        <tr>
            <td>5</td>
            <td>9</td>
        </tr>
        <tr>
            <td>3</td>
            <td>7</td>
        </tr>
    </tbody>
</table>

jQuery セレクター:

$('#table td:nth-child(1)')

戻り値:

<td>5</td>

<td>5</td>ANDを返さないのはなぜ<td>3</td>ですか? nth列全体(ここでは1番目)が必要です。

ありがとう。

4

3 に答える 3

0

これは機能します。初めての子におすすめ:first-child

$('#table tr').each(function(){
    $('td:nth-child(1)', this).css( 'color', 'red' )
});
于 2013-03-31T21:06:30.860 に答える