1
我有兩個用於種姓和種姓的多選框。在選擇框中使用添加/刪除按鈕。我想根據種姓過濾分類。我怎麼能得到種姓選擇框的價值。我正在使用添加/刪除代碼是如何從添加刪除選擇框中獲取值
$('#btn-add').click(function(){
$('#caste option:selected').each(function() {
$('#caste_new').append("<option value='"+$(this).val()+"'>"+$(this).text()+"</option>");
$(this).remove();
});
});
$('#btn-remove').click(function(){
$('#caste_new option:selected').each(function() {
$('#caste').append("<option value='"+$(this).val()+"'>"+$(this).text()+"</option>");
$(this).remove();
});
});
並且還使用ajax從數據庫中獲取值。 請幫忙。提前致謝。
這不是你的問題,但爲什麼你創建新的選擇,只是將現有的選項添加到新的選擇? – Luizgrs 2014-10-06 11:34:52
我想獲取caste_new選擇框的值。 – 2014-10-06 11:48:09