我是 JQuery 的新手,我遇到了麻烦。我想从有复选框的表格行中读取特定的单元格值。我有一个处理复选框选中事件的事件。这是我的代码:
$("#businesses input:checkbox").change(function (
var $this = $(this);
if ($this.is(":checked")) {
//Here I want to read a value from a column in a row where is the checkbox
} else {
//Here I want to read a value from a column in a row where is the checkbox
}
});
我有一张名为“businesses”的表格,它有这种格式
<table id="businesses">
<tr>
<th>Select Value</th>
<th>Value</th>
</tr>
<tr>
<td><input type="checkbox" class="selectedService" title="Seleccionar" /></td>
<td>125</td>
</tr>
<tr>
<td><input type="checkbox" class="selectedService" title="Seleccionar" /></td>
<td>126</td>
</tr>
</table>
我想要做的是,当我选择一个复选框时,获取其行的值字段。
如果我按下第一个复选框,我想得到 125。
谢谢!!!