我有这样的桌子-
<table class='table'>
<tr>
<td class="td"><input type="text" name="name<%=f.getId()%>" value="<%=f.getName()%>"/>
</td>
<td class="td"><input type="text" id="field_length" size="3" name="length<%=f.getId()%>" value="<%=f.getLength()%>"/></td>
<td class="td"><input type="text" name="tooltip<%=f.getId()%>" value="<%=f.getToolTip()%>"/></td>
</tr>
<tr>
same like the previous.......
</tr>
<tr>
same like previous....
</tr>
现在我想更改位于第二行的文本框中的值,其 id 为“field_length”。我尝试使用 jquery 来做到这一点。
$(‘tr:nth-child(2) input:text#field_length’).val(10);
但这不起作用。任何机构都可以为此提供一些帮助。