JQuery-Filter表单仅显示相应的输入

时间:2013-07-09 21:11:48

标签: jquery forms input

假设我有两个数据库表:Panels和Collection。

我正在尝试使用表单在每个表中添加/编辑行。它们都有类似的字段,如名称和价格,但它们也有独特的字段。

使用JQuery,如何在一个表单中合并输入,并且只显示与要添加或编辑行的表格对应的输入?

<input name="name"></input>
<input name="price"></input
<input name="per_door_price"></input> <!--corresponds only to panel table-->
<input name="series"></input> <!--corresponds only to collection table-->

该表将在另一个页面中选择,并使用$ _POST发送到表单。

1 个答案:

答案 0 :(得分:1)

使用this上下文或find方法

$('#tables').find('input')

$('input', '#tables')

这只会使用id="tables"

定位表格中的输入元素