0

假设我有两个数据库表:面板和集合。

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

使用 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 发送到表单。

4

1 回答 1

1

使用this上下文或find方法

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

或者

$('input', '#tables')

这将只针对表内的输入元素id="tables"

于 2013-07-09T21:14:40.313 回答