2013-07-09 56 views
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發送到表單。

回答

1

使用this上下文或find方法

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

$('input', '#tables') 

這隻會針對表內的輸入元素與id="tables"

+0

$( '#集') 。.find( '#系列')切換(); //許多方法來做到這一點。 –

+0

我打算說數據庫表。 – izharbuen