2


我在这个项目上使用了 JqueryUI。
当我使用向下箭头键关注列表中的下一个项目时,jqueryui 返回上一个选定的项目

这是一个完美的工作示例在 jsFiddle 上

这是Jquery代码

$( "#itemname" ).autocomplete({
    source: function( request, response ) {
            var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( request.term ), "i" );
            response( $.grep( tags, function( item ){
                return matcher.test( item );
            }) );
        }, 
        //focus: function(event) { alert( event.type ); }
        focus : function(event, ui) { 
            //alert( $(this).val() );
            var item_name_this = $(this).val();
            $('#properties_item_name').html(item_name_this);               
        }
});
4

1 回答 1

5
focus: function (event, ui) {
     var item_name_this = ui.item.value;
     $('#properties_item_name').html(item_name_this);
}

演示--> http://jsfiddle.net/VCd4J/16/

于 2013-05-17T14:21:15.497 回答