如何在自动填充中使用“滚动”和“最大”选项

时间:2012-03-06 19:16:47

标签: jquery jquery-ui jquery-ui-autocomplete

我需要有关jquery的aucomplete的帮助。

jQuery("#PeopleName").autocomplete(
                                   {source:["name1","name2","..."],
                                    minLength:2,
                                    max:10,
                                    scroll:true});

'scroll'和'max'不起作用。
我使用的是jquery-ui-1.8.18.custom.min.js。 这段代码有什么问题?

1 个答案:

答案 0 :(得分:62)

我设法解决了这个问题。我在jqueryUI

中找到了代码
<style>
       .ui-autocomplete {
            max-height: 200px;
            overflow-y: auto;
            /* prevent horizontal scrollbar */
            overflow-x: hidden;
            /* add padding to account for vertical scrollbar */
            padding-right: 20px;
        } 
</style>

<script>
jQuery("#PeopleName").autocomplete({
                                   source:["name1","name2","..."],
                                   minLength:2
                                   });

</script>

这很有效。