假设我有两个数据库表:面板和集合。
我正在尝试使用表单在每个表中添加/编辑行。它们都具有相似的字段,例如名称和价格,但它们也具有唯一的字段。
使用 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 发送到表单。