我有一個HTML表4個tablecells: 1:複選框 2.標籤 3.文本框 4.標籤使用jQuery獲取表值
當我點擊複選框,一個jQuery功能火災,但即時通訊嘗試獲取複選框旁邊的值。我在下面嘗試過,但沒有任何效果。我知道我很接近。任何幫助將非常感激。
$(this).next()
$(this).nextSibling
$(this).nextSibling.childNodes[0]
<table id="MainContent_cockpitTable" style="width:80%;">
<tr>
<td>
<input id="MainContent_check_FLIGHT DECK1" type="checkbox" checked="checked"/>
</td>
<td>Pilot</td>
<td><input "type="text" value="86.2" maxlength="10" id="MainContent_input_FLIGHT DECK_weight1" />
</td>
<td><span id="MainContent_input_FLIGHT DECK_arm1" style="display:inline-block;width:50px;">255.0</span></td>
</tr>
</table>
你可以發佈你的HTML代碼,可能會更容易跟蹤。 – toxicate20
複選框旁邊的值? – Rooster
我的答案將工作 - 我有點猜到你的HTML,並得到它的權利 –