使用ajax在服务器上调用脚本的jquery语法

时间:2016-01-26 17:06:03

标签: jquery html ajax forms

我们正在使用jquery表单插件(http://jquery.malsup.com/form/#getting-started)对服务器进行jquery ajax调用。一旦得到回复。

我们需要解析这个并在服务器上再做一次ajax调用。请让我知道使用jquery调用它的语法。

$('#MyForm').ajaxForm({
  success: function(data) {
    console.log("My form submit successful.The response is >>" + data);
    // Process this response and call another script on  the server.
  }
});

2 个答案:

答案 0 :(得分:1)

要在回调函数中发出ajax请求,请执行以下操作:没什么特别的,没什么不寻常的。

<h1 style="font-weight:bold; text-align:center; background-color:blue; width:100%">Wheat</h1>

答案 1 :(得分:0)

在成功函数中添加另一个ajax调用,如下所示:

$('#MyForm').ajaxForm({
  success: function(data) {
    console.log("My form submit successful.The response is >>" + data);
    // Process this response and call another script on  the server.

    $.ajax({
      url: 'http://yourURL',
      data: {
        var: 'val',
        ..
      },
      type: 'POST', //GET
      datatype: 'text', //XML,JSON
      success: function(result) {
        //result data handling
      }
      error: functionn() {
        //error handling
      }
    });
  }
});