我有一个动态生成的表,其中包含多行复选框以及一些其他数据。单击按钮,我想获取所有选中复选框的值。我设法让这个工作。我现在想要在同一个<td>
中获取另一个<tr>
的文本,并将其附加到<span>
。
我尝试了以下内容:
HTML
<tr><td><input type="checkbox" value="23" class="inpcheckbox"></td><td class="fname">John</td></tr>
<tr><td><input type="checkbox" value="25" class="inpcheckbox"></td><td class="fname">Bob</td></tr>
jQuery的:
$("#btnaddstudentstograde").click(function(){
var studentids = $("#tblstudents input:checkbox:checked").map(function(){
return $(this).val();
var listo = $(this).closest("tr").find(".fname").text();
$("#spanlist").append(listo);
}).get();
$("#inpstudentids").val(studentids);
})