有没有办法在输入字段中显示ajax响应? 感谢
答案 0 :(得分:3)
是
使用jQuery看起来像:
$.ajax({
url: '/test.php',
success: function(data) {
$('#your-input').val(data);
}
});
答案 1 :(得分:0)
检查一下:jQuery.ajax()
$("id").val(
$.ajax({
url: "script.php",
global: false,
type: "POST",
data: ({id : this.getAttribute('id')}),
dataType: "html",
async:false,
success: function(msg){
alert(msg);
}
}
).responseText);