我是 jQuery 的新手。我想动态添加两个带有标签的文本框,firstname
然后lastname
单击“添加”按钮。
<table border="0" cellspacing="2">
<tr><td style= "width:200px;" align="right">Name
<td>
<input type="text" id="current Name" value="" />
</td></td>
</tr>
<tr>
<td align="right">Test value</td>
<td>
<select id="test" style= "width:350px;">
</select>
</td>
</tr>
<tr>
<td align="right">datas</td>
<td>
<input type="button" id="add" value="Add" onclick="AddTables();"/>
</td>
</tr>
<tr>
<td style="height:3px" colspan="2"></td>
</tr>
<tr style="background-color: #383838">
<td></td>
</tr>
<tr>
</tr>
<tr>
</div>
</div>
</td>
</tr>
</table>
我对添加文本框有限制。最多7个。同理,有没有办法删除文本框?