1

我还是 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> 
4

2 回答 2

0

弄清楚了。需要设置

var $form = $("form#adminNotes);
于 2010-01-29T05:11:08.343 回答
0

我没有使用.serialize,但请尝试像您当前所做<form>的那样选择而不是。<textarea>

在 sendNotes 函数中使用$("#adminNotes")而不是。$(this)

于 2010-01-29T05:14:21.287 回答