AJAX Jquery返回消息?

时间:2014-09-20 15:17:38

标签: jquery ajax

我有这个AJAX电话

$(function() {
    $("button#submit").click(function(){
               $.ajax({
                   type: "POST",
            url: "process.php",
            data: $("form.contact").serialize(),
                success: function(msg){
                    $(".alert-success").toggle();
                    $("#form-content").modal("hide");    
                },
            error: function(){
                $(".alert-error").toggle();
                }
                  });
    });
});

问题是在process.php中我只有

echo "OK";

在控制台中我看到resposne但不在页面上,可能有什么问题?

1 个答案:

答案 0 :(得分:2)

您获得msg作为ajax调用的结果,但您不会在任何地方使用它。您可以在成功中使用它,例如:

$(function() {
    $("button#submit").click(function(){
               $.ajax({
                   type: "POST",
            url: "process.php",
            data: $("form.contact").serialize(),
                success: function(msg){
                    $(".alert-success").toggle();
                    $("#form-content").modal("hide");
                    //console.log(msg); to get the result in console for example
                },
            error: function(){
                $(".alert-error").toggle();
                }
                  });
    });
});