如何从jQuery中放置在td中的输入中读取数据

时间:2016-10-03 12:22:32

标签: jquery

我一直试图用简单的

结构从表中读取值
<table id='myTable'>
 <tr>
  <td><input id='myId'/><td>
</tr>
</table>

但是我对某些事情感到失望:

 $('#myTable tr').each(function() {
            var Id = $(this).find(".myId").html();
}

这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

要按ID选择,您需要使用#,而不是.,这是类选择器,例如

$('#myTable tr').each(function() {
    var Id = $(this).find("#myId").html();
}

有关CSS选择器的更多信息,请访问MDN