jquery autocomplete不在输入标签下?

时间:2016-04-05 06:45:36

标签: javascript jquery css

我在这里使用jquery自动完成,但列表不在输入字段下,但在其他地方我附加了图像!如何解决这个问题?

enter image description here

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());
    });

0 个答案:

没有答案