假设我有两个数据库表: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发送到表单。
答案 0 :(得分:1)
使用this
上下文或find
方法
$('#tables').find('input')
或强>
$('input', '#tables')
这只会使用id="tables"