我在哪里可以在jquery自动完成中使用keypress

时间:2014-01-08 21:07:12

标签: jquery ruby-on-rails autocomplete

我想使用按键,所以当我输入!时,我需要传递一个方法。这是我正在使用的代码

$(document).ready(function(){

    $( "#search" ).autocomplete(
        {
            source:"entities#index",
            select: function( event, ui ) {
                $( "#search" ).val( ui.item[1] );
                $( "#results").empty();
                $( "#results" ).append( '<a href= '+"entities"+'/'+ui.item[0]+ '>' +ui.item[1]+'</a>' );
                return false;
            }

        }).data( "ui-autocomplete" )._renderItem = function( ul, item ) {
        return $( "<li></li>" )
            .data( "item.autocomplete", item )
            .append( "<a>" + item[1] + "</a>" )
            .appendTo( ul );
    };


})

我想在上面的代码中使用keypress我试过这个但没有成功

keydown: function(event,ui){
        event.preventDefault();
        if (event.Keycode ==35) {
            /// logic here
        }
    }

谢谢,

0 个答案:

没有答案