4

我使用 jquery ui 来实现自动完成。我的代码看起来像这样

$(function(){

$('input[name=store]').attr('autocomplete','on');

        $( "input[name=store]" ).autocomplete({
        source: function( request, response ) {
            //alert('hello');
            $.ajax({
                url: "http://localhost/dheeps/admin/calls/callback.php",
                dataType: "jsonp",
                data: {

                    sub:"searchstore",

                    store: request.term
                },
                success: function( data ) {
                    //alert('hello');
                    response( $.map( data.data, function( item ) {
                        //alert(item);
                        return {
                            label: item.name + (item.id1 ? ", " + item.adminName1 : "") + ", " + item.id,
                            value: item.id
                        }
                    }));

                }
            });
        },
        minLength: 2,
        select: function( event, ui ) {

        },
        open: function() {
            $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
            //alert('helo');
        },
        close: function() {
            $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
        }
    });

});

在表单的 html 中,我发现输入的元素自动完成属性设置为关闭。这就是我的代码不起作用的原因。请指导我

4

2 回答 2

5

放在下面

$('input[name=store]').attr('autocomplete','on');

在这之后

 $( "input[name=store]" ).autocomplete({});

因为autocomplete属性会在初始化后添加到元素中。

于 2012-06-14T04:23:27.197 回答
4

感谢您提供此信息。这解决了问题。我认为这很奇怪,一个简单的测试示例可以正常工作。然后,当我把它放到一个大项目中时,它会自动被禁用。

$(function () {
    var availableTags = ["One", "Two", "Three"];

    $("#myinput").autocomplete({
        source: availableTags
    });

    $("#myinput").attr('autocomplete', 'on');
});
于 2013-11-02T14:37:05.520 回答