我在这里使用jquery自动完成,但列表不在输入字段下,但在其他地方我附加了图像!如何解决这个问题?
CSS:
.ui-autocomplete {
max-height: 100px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
/* add padding to account for vertical scrollbar */
padding-right: 20px;
}
Jquery:
$('#commandTypeInput').autocomplete({
source: ["aaa","BBB","ccc","cccd"
],
minLength: 0
}).focus(function(){
$(this).data("autocomplete").search($(this).val());
});