我目前正試圖讓我的Ajax從HTML表單發佈一些信息到PHP表單。在jQuery Ajax之後做功能嗎?
那麼,現在我已經在「ajax.comment.php」頁面上打印出不同的代碼,告訴發生了什麼。
如果它成功或不成功。
我現在想讓我的ajax,檢查打印的html是什麼。 然後處理該..如果(打印HTML ==「1」){然後做點什麼}。
我該怎麼做?
我下面的JavaScript是:
var name = document.comment.name.value;
var email = document.comment.email.value;
var website = document.comment.website.value;
var message = document.comment.message.value;
var id = document.comment.id.value;
$.ajax({
type: "POST",
url: "ajax.addcomment.php",
data: "name="+name+"&email="+email+"&website="+website+"&message="+message+"&id="+id,
beforeSend: function() {
// Action before sending data
},
success: function(returned_html) {
// Action after sending data, where the returned_html var is the returned html text by the php
}
});
是不是'returned_html'? – xdazz