我想从ajax select2中获得一些价值,但是我很难获得价值,我尝试编写代码,但是在我的textinput中是show [Object Object]
$('.find_rm').select2({
placeholder: 'Search With Name or No.',
ajax: {
url: 'sc_no_rm',
dataType: 'json',
delay: 250,
processResults: function(data) {
return {
results: $.map(data, function(item) {
return {
text: item.pasien_name, //show name
textSx: item.pasien_sx,
textDate: item.pasien_date,
textAddress: item.pasien_addr,
id: item.pasien_no_rm
}
})
};
},
cache: true
}
});
$('#no_rm').on('change', function(e) {
console.log(this.textjk),
// var data = e.params.data;
// $("#pasien_name").val($(this).find('option:selected').text(this.))
// $("#pasien_name").val($(this).slug())
$("#pasien_name").val($(this).val(this.textSx))
});
我希望我的问题是可以理解的..so谢谢...;)