我寫了一個網頁,用戶可以輸入存儲在數據庫中的日誌條目,然後使用ajax
檢索並打印在頁面上。我對ajax
還很陌生,想知道是否有人可以請我解釋一下return false;
在我的代碼末尾做了什麼?甚至有必要?什麼是「返回false」;做?
如果我把return false
後面的第二個ajax代碼不起作用!你能向我解釋爲什麼?
//handles submitting the form without reloading page
$('#FormSubmit').submit(function(e) {
//stores the input of today's data
var log_entry = $("#LogEntry").val();
// prevent the form from submitting normally
e.preventDefault();
$.ajax({
type: 'POST',
url: 'behind_curtains.php',
data: {
logentry: log_entry
},
success: function() {
alert(log_entry);
//clears textbox after submission
$('#LogEntry').val("");
//presents successs text and then fades it out
$("#entered-log-success").html("Your Entry has been entered.");
$("#entered-log-success").show().fadeOut(3000);
}
});
//prints new log entries on page upon submittion
$.ajax({
type: 'POST',
url: '/wp-content/themes/childOfFanwood/traininglog_behind_curtains.php',
data: {
log_entries_loop: "true"
},
success: function(data) {
alert(data);
$("#log-entry-container").html("");
$("#log-entry-container").html(data);
}
});
return false;
});
停止默認表單提交行爲 – 2012-05-23 23:21:26
@Dagon。不僅如此。 – gdoron