在这里,我有 ajax 代码,我得到的是价值而不是 html
jQuery('#phone').on('change', function(){
jQuery.ajax({
url: "get_phone.php",
type: "GET",
data: {
phone: jQuery('#phone').val()
},
success: function(response) {
//var phone = jQuery.parseJSON(response);
jQuery("#dropdown").val(response);
}
});
});