我有一个id =“selector”的表。
每行的单元格都有相应的输入。
<td class="cell1"><b>Cell 1</b></td>
<input type="text" name="cell1" id="cell1">
我需要做的是捕获整行并将某些单元格分配给输入(并非所有单元都将分配给输入)。在这个例子中,它只是cell1。
<script type="text/javascript ">
$('#selector tr').click(function() {
var values = ($(this).html()); // this is the whole row
// no idea what to do now
$("#cell1").val($(this)) // don't know how to select cell1
});
</script>
编辑:#sub1 - &gt; #CELL1
答案 0 :(得分:1)
无需通过html()
“捕获整行”。
$('#selector tr').click(function() {
$("#sub1").val( $(this).find("td").get(0).text() );
});