我有一个带有 4 个表格单元的 html 表格: 1:复选框 2. 标签 3. 文本框 4. 标签
单击复选框后,将触发一个 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>