我还是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>
答案 0 :(得分:0)
想出来。需要设置
var $form = $("form#adminNotes);
答案 1 :(得分:0)
我没有使用.serialize
,但请尝试选择<form>
代替<textarea>
,而不是正在进行。{/ p>
在sendNotes函数中使用$("#adminNotes")
代替$(this)
。