fma*_*ica 18 jquery jquery-ui jquery-ui-autocomplete
我需要有关jquery的aucomplete的帮助.
jQuery("#PeopleName").autocomplete(
{source:["name1","name2","..."],
minLength:2,
max:10,
scroll:true});
Run Code Online (Sandbox Code Playgroud)
'scroll'和'max'不起作用.
我使用的是jquery-ui-1.8.18.custom.min.js.这段代码有什么问题?
fma*_*ica 70
我设法解决了这个问题.我在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>
Run Code Online (Sandbox Code Playgroud)
这很有效.