我有一张有不同行的表。每行包含项目描述和订购项目的链接。单击链接时,我现在需要在该行下方显示一个表单。
我可以通过为每个表行使用多个表单并使用 Jqueryhide()
和show()
函数来完成它。但这似乎不太合乎逻辑。
有没有更好的办法。就像我可以只在一个地方创建表单并在单击链接时调用它并显示在表格行下方。
<table>
<tr>
<td> The Item Description </td>
<td><a href=""> Order now </td>
</tr>
<tr>
<!-- the form should be here , it should be initially hidden but must be displayed when the link is clicked. I will have a huge number of Items -->
</tr>
</table>