gpt4 book ai didi

ajax - 自动完成仅显示消息 N 结果可用,使用向上和向下箭头键进行导航。而是显示列表

转载 作者:行者123 更新时间:2023-12-04 01:26:48 29 4
gpt4 key购买 nike

我的问题很清楚。

我正在使用 jquery 自动完成功能,但我不知道为什么它只显示消息:

9 results are available, use up and down arrow keys to navigate.

没有向我展示结果列表。

这是我的代码:
<p class="select-c">
<label for="fcb">Location</label>
<input id="fcb" name="fcb" type="text">
</p>


$("#fcb").autocomplete({
source: function (request, response) {
$.ajax({
type: "GET",
dataType: 'json',
url: "../ws/city/" + request.term,
async: true,
success: function( data ) {
response( $.map( data, function( item,key ) {
return {
label: key,
value: item.id_town+"#"+item.id_province
}
}));
},
error: function (result) {
alert("Due to unexpected errors we were unable to load data");
}
});
},
minLength: 2
});

结果如下:

enter image description here

可能是什么问题呢??

最佳答案

检查您的 CSS,也许您正在隐藏菜单元素。尝试:

.ui-autocomplete {
z-index: 10000000;
}

关于ajax - 自动完成仅显示消息 N 结果可用,使用向上和向下箭头键进行导航。而是显示列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17420374/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com