1
我有一個下拉框中的每一行表JQuery的選擇元素在標準
<table>
<tr>
<th>
<select name="priorityID" id="priorityID">
<option label="Important" value="1" selected="selected">Important</option>
<option label="semi important" value="2">semi important</option>
<option label="normal" value="3">normal</option>
<option label="not important" value="4">not important</option>
</select>
</th>
</tr>
<tr>
<th>
<select name="priorityID" id="priorityID">
<option label="Important" value="1" selected="selected">Important</option>
<option label="semi important" value="2">semi important</option>
<option label="normal" value="3">normal</option>
<option label="not important" value="4">not important</option>
</select>
</th>
裏面的問題是現在每當priorityID
變化,我需要調用一個jquery功能更新數據庫。現在,由於每行都有自己的下拉框,因此如何編寫JQuery以便在JQuery端可以捕獲哪個行的下拉框來觸發事件?