0
假設我有兩個數據庫表:面板和集合。JQuery篩選器窗體只顯示相應的輸入
我想在每個表格中使用表格添加/編輯行。他們都有類似的領域,如名稱和價格,但他們也有獨特的領域。
使用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發送到表單。
$( '#集') 。.find( '#系列')切換(); //許多方法來做到這一點。 –
我打算說數據庫表。 – izharbuen