我有一个选择列表。我想在选择该选项时找到一个索引。取自数据库的选项值,但索引未刷新。这是我的代码
function loadListPenyakit(){
$.ajax({
type: 'get',
url: 'http://10.0.2.2.com/compfest/ajax/belajar/list_p.php',
success: function(response){
var file = '';
$.each(response, function(index, item){
file += '<option value='+$("select[name='select-choice-b'] option:selected").index()+'>' + item.penyakit + '</option>';
});
$('#select-choice-b').html(file).selectmenu().selectmenu('refresh', true);
},
error: function(e){
alert('Communication Server Error ');
}
});
}
当我从数据库中获取数据时,索引值为 0。这意味着没有刷新。请帮帮我 !