在输入字段中显示ajax响应

时间:2011-01-07 08:26:26

标签: jquery ajax

有没有办法在输入字段中显示ajax响应? 感谢

2 个答案:

答案 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);