1
我想從選項標籤組合框的數據庫中追加值。但是當我第一次選擇標籤的值爲空,然後通過AJAX
追加時,它只顯示一個值。但我希望所有選項都可見,但應自動選擇。在jquery mobile中動態選擇組合框
我的代碼
$('#b').on("click", "a", function() {
var patid= $(this).attr('id');
$.ajax({
type:"GET",
url:"https://localhost/patient_details1.php?patid="+patid,
dataType:'JSON',
success:function(response)
{
("#pat_type").html("");
for (var i=0;i<response.length;i++)
{
$('<option value="'+ response[i].pattype +'">'+
response[i].pattype +'</option>').appendTo("#pat_type");
}
}
}
});
});