无法在返回键上使用jquery传递post-data

时间:2011-06-28 03:27:06

标签: jquery

这是我的代码,我希望在返回命中后,将带有classid“#note”的textfield的值发送到php / site的php / add。但它不起作用。

$(function() {
$('#note').keydown(function (e){
    if(e.keyCode == 13){
        var note = $('#note').val();
            $.post("index.php/dash/add", {note:note}, function() {
            $('.sort').load("index.php/dash/add");
         });
    }
}); });

1 个答案:

答案 0 :(得分:1)

如果是一个选项,请尝试将文本字段设为id="note",然后在jQuery中使用$('#note')