我有一個表如下;JQuery遍歷表列
<table>
<tr>
<th scope="col"></th>
<th scope="col">Column One</th>
<th scope="col">Column Two</th>
<th scope="col">Column Three</th>
<th scope="col">Column Four</th>
</tr>
<tr>
<th scope="row">Row One</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">Row Two</th>
<td></td>
<td></td>
<td class="click"></td>
<td></td>
</tr>
<tr>
<th scope="row">Row Three</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Row Four</th>
<td></td>
<td></td>
<td class="target"></td>
<td></td>
</tr>
<table>
我希望能夠與一類的「點擊」點擊<td>
,然後用一類的目標是提醒我,多少行走<td>
。 (在上面的例子中它會返回2)。
有可能在表中的其他元素<td>
與類對象的。我只對行數相同的行中我的「點擊」 td
興趣,直到下一個目標。我的'點擊'<td>
或其他列中的任何目標應該被忽略。
如果沒有其他「目標」 <td>
「同一行中單擊元素後,S,提醒應改爲‘沒有其他的目標。’
我希望這是顯而易見的。
那麼你的問題是什麼?你自己已經做了什麼? – 2011-12-22 14:40:13