我一直试图用简单的
结构从表中读取值<table id='myTable'>
<tr>
<td><input id='myId'/><td>
</tr>
</table>
但是我对某些事情感到失望:
$('#myTable tr').each(function() {
var Id = $(this).find(".myId").html();
}
这样做的正确方法是什么?
答案 0 :(得分:0)
要按ID选择,您需要使用#
,而不是.
,这是类选择器,例如
$('#myTable tr').each(function() {
var Id = $(this).find("#myId").html();
}
有关CSS选择器的更多信息,请访问MDN