如何使用Javascript从submit.php获取结果?

时间:2013-06-03 13:54:55

标签: javascript submit

您好我有这些HTML表格:

<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="./comments.js"></script>
</head>
<div id="addCommentContainer">
<form class="add-comment-form" id="addCommentForm3" method="post" action="">
<input type="hidden" value="3" name="comentonpost" id="comentonpost" />
<textarea class="commentinput" name="body" id="body" cols="20" rows="5"></textarea>
<input type="button" class="add-comment-submit" value="Submit" />
</form>
</div>
<div id="addCommentContainer">
<form class="add-comment-form" id="addCommentForm3" method="post" action="">
<input type="hidden" value="3" name="comentonpost" id="comentonpost" />
<textarea class="commentinput" name="body" id="body" cols="20" rows="5"></textarea>
<input type="button" class="add-comment-submit" value="Submit" />
</form>
</div>



这是我的JS:

     $(document).ready(function () {
// $(".add-comment-submit") selects all elements with the class "add-comment-submit", so the "submit" buttons
// .on will handle event binding for the click event on any of those buttons
$(".add-comment-submit").on("click", function (e) {
    e.preventDefault();
    // 'this' is the element that fired the event, so the submit button
    var submit = $(this);

    // check if the submit button has the "working" class added. this will tell us that someone already clicked it
    // and we shouldn't continue
    if (submit.hasClass("working")) return false;

    // add "working" class to the submit button to prevent double click
    submit.addClass("working");
    submit.val("Working...");

    /* Sending the form fileds to submit.php: */
    // do the post, and on callback (simulated with setTimeout) set everythign back
    $.post('submit.php',$(this).serialize(),function(msg){

    // simulate post 
    setTimeout(function () {   
        submit.removeClass("working");
        submit.val("Submit");

        //$(msg.html).hide().insertBefore(submit.parent()).slideDown();

        // simulate getting results back from server
        $("<div>Here are some results or something</div>").hide().insertBefore(submit.parent($(".addCommentContainer"))).slideDown();

    }, 1000);
    });
});
});

在按下每个表单上的“提交”按钮后,使用此JS会显示消息“这里有一些结果或某些内容”。

这是我的submit.php:

<?PHP 
$message = "Hello world";

echo $message;
?>



我的问题是 - 我如何在提交时打印JS $message而不是“这里有一些结果或什么”?

你能告诉我在剧本中我需要改变什么才能起作用吗? 提前致谢!

2 个答案:

答案 0 :(得分:0)

正如文档明确指出的那样,回调中的第一个参数是来自服务器的响应。

答案 1 :(得分:0)

$.post('submit.php',$(this).serialize(),function(msg){

    // simulate post 
    setTimeout(function () {   
        submit.removeClass("working");
        submit.val("Submit");

        //$(msg.html).hide().insertBefore(submit.parent()).slideDown();

        // simulate getting results back from server
        $("<div>" + msg +"</div>").hide().insertBefore(submit.parent($(".addCommentContainer"))).slideDown();

    }, 1000);
    });