在jquery中使用keydown的问题

时间:2014-09-29 22:32:09

标签: jquery ajax keydown

请帮忙。我在使用jquery keydown

将数据发布到数据库时遇到了一些困难
  1. 使用if(e.which == 13){添加到脚本中没有数据进入数据库,但我从Ajax部分收到完整的肯定消息
  2. 如果我删除e.which == 13部分它可以工作但添加我输入的每个字母在数据库中的单独行 我究竟做错了什么?如果有所作为,我正在使用cakephp
  3. -

    $(document).ready(function() {
        $('#notify').bind("keydown", function(e){
            if ( e.which == 13 ) {
    
                var notes  = $('.note').val();  
    
                var targeturl = 'http://www.domain.com/notifications/index/33/'+notes;  
                //alert(targeturl);
    
                $.ajax({    
                    dataType: "html",
                    type: "POST",
                    evalScripts: true,              
                    url: targeturl,     
                    complete: function () {
                        // Handle the complete event
                        var result = "Thanks for update your fans";
                        $("#thanksfornotes").fadeOut("slow").html(result);
                    }     
                })
    
            }
    
        });
    });
    

0 个答案:

没有答案