0

我正在尝试使用 Ajax 工具包实现自动完成列表:AutoCompleteExtender

如何使用 Ajax 工具包实现以下行为:AutoCompleteExtender?也可以提供任何代码示例吗?

  • 就像谷歌搜索一样,当自动完成列表显示基于输入时。当鼠标移出或聚焦于其他区域时。自动完成列表仍然根据输入值显示。

  • 如果用户输入 abc 并且系统显示自动完成列表,如 abcd、abcde。当用户将鼠标移出然后单击相同的输入 abc 系统应再次显示自动完成列表。

任何人都可以建议吗?

4

2 回答 2

1

我个人更喜欢使用 jQuery UI 自动完成功能。

演示和代码:

jQuery UI 自动完成

示例 JS 代码:

$(function() {
    function log( message ) {
        $( "<div>" ).text( message ).prependTo( "#log" );
        $( "#log" ).scrollTop( 0 );
    }
    $( "#city" ).autocomplete({
        source: function( request, response ) {
            $.ajax({
                url: "http://ws.geonames.org/searchJSON",
                dataType: "jsonp",
                data: {
                    featureClass: "P",
                    style: "full",
                    maxRows: 12,
                    name_startsWith: request.term
                },
                success: function( data ) {
                    response( $.map( data.geonames, function( item ) {
                        return {
                            label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
                            value: item.name
                        }
                    }));
                }
            });
        },
        minLength: 2,
        select: function( event, ui ) {
            log( ui.item ?
            "Selected: " + ui.item.label :
            "Nothing selected, input was " + this.value);
        },
        open: function() {
            $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
        },
        close: function() {
            $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
        }
    });
});
于 2013-07-28T05:55:57.597 回答
0

您的第一点是 ajax ACE(自动完成扩展器)默认行为。

第二个,您可以使用 jquery .mouseleave().mouseenter()事件在鼠标离开时在隐藏字段中删除 contextKey 并在鼠标输入中再次填充。

于 2013-07-28T10:06:20.350 回答