我还是 ajax 和 JavaScript 的新手,所以我很抱歉遗漏了一些可能非常基本和前期的东西。
我正在尝试提交表单 onblur。我正确调用了该函数,但我不确定如何从表单中引用变量。当我从表单中移出时,我在 Firebug 中看到它正在调用 addNotes.php 文件,但没有传递任何变量。
这是JavaScript:
// Ajax to submit an edited post to the database.
function sendNotes() {
// we want to store the values from the form input box, then send via ajax below
var $form = $(this);
$.ajax({
type: "POST",
url: "includes/addNotes.php",
data: $form.serialize(),
success: function(){
}
}); // End .ajax function
return false;
} //End submit function()
现在这里是 HTML:
<form id="adminNotes" method="post" name="adminNotes" action="">
<textarea name="notes" id="notes" onblur="sendNotes()"></textarea>
</form>