Jquery 自动完成,如果没有找到匹配项,则显示“no matches found”在下拉菜单中,但不允许关注它

发布于 2024-11-05 17:21:32 字数 1389 浏览 0 评论 0原文

这个问题说明了一切。我的 jquery 自动完成功能从我自己的 api 之一获取其来源。如果找不到任何匹配项,它只会返回“未找到匹配项”,然后显示在下拉列表中。当用户关注此内容时,框中的文本将更改为“未找到匹配项”。我想要做的是在下拉列表中显示“未找到匹配项”,但使其不可聚焦/可选择。这是我现在的代码:

$(document).ready(function() {
    $("input#id_address").autocomplete({
        delay: 300,
        minLength: 3,
        source: function(request, response) {
            $.getJSON("/pin/cache/", {q:encodeURI(request.term)}, function(results) {
                res = results.results;
                response($.map(res, function(item) {
                    return {
                        label: item.address,
                        value: item.address,
                        lat: parseFloat(item.lat),
                        lng: parseFloat(item.lng)
                    }
                })); 
            });
        },
        select: function(event, ui) {
            if (ui.item.value == 'no matches found') {
                return;
            }
            else {
                $("#id_address").val(ui.item.value);
                var pos = new google.maps.LatLng(ui.item.lat, ui.item.lng);
                map.setCenter(pos);
                map.setZoom(14);
                placeMarker(pos);
            }
        },
    });
});

如您所见,我正在使用 if else 循环来检查 select:function 中的“未找到匹配项”,如果选择了未找到匹配项,则不执行任何操作。但是,它仍然在焦点上填充文本“未找到匹配项”。我想要在找到匹配项时填充焦点文本的默认功能,但是当未找到匹配项时,下拉列表应该无法聚焦。有什么建议吗?

The question says it all. My jquery autocomplete gets its source from one of my own apis. If it cannot find any matches, it just returns "no matches found" which is then displayed in the dropdown. When the user focuses on this, the text in the box changes to "no matches found". What i want to do is display "no matches found" in the dropdown, but make it unfocusable/selectable. This is my code as of now:

$(document).ready(function() {
    $("input#id_address").autocomplete({
        delay: 300,
        minLength: 3,
        source: function(request, response) {
            $.getJSON("/pin/cache/", {q:encodeURI(request.term)}, function(results) {
                res = results.results;
                response($.map(res, function(item) {
                    return {
                        label: item.address,
                        value: item.address,
                        lat: parseFloat(item.lat),
                        lng: parseFloat(item.lng)
                    }
                })); 
            });
        },
        select: function(event, ui) {
            if (ui.item.value == 'no matches found') {
                return;
            }
            else {
                $("#id_address").val(ui.item.value);
                var pos = new google.maps.LatLng(ui.item.lat, ui.item.lng);
                map.setCenter(pos);
                map.setZoom(14);
                placeMarker(pos);
            }
        },
    });
});

As you can see, i am using an if else loop to check for "no matches found" in select:function to do nothing if no matches found is selected. However, it still fills in the text "no matches found" on focus. I want the default functionality of filling in the text on focus when matches are found, but when no matches are found, the dropdown should be unfocusable. Any suggestions ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

[浮城] 2024-11-12 17:21:32

一种可能的解决方案是在 select 的 focus() 处理程序上放置一个事件,检查文本“未找到匹配项”,如果是,则立即模糊它。

$("input#ip_address").focus(function(){
    if($(this).text()=="no matches found") {
        $(this).blur();
    }
});

One possible solution is to place an event on the select's focus() handler that checks for the text 'no matches found' and if so immediately blurs it.

$("input#ip_address").focus(function(){
    if($(this).text()=="no matches found") {
        $(this).blur();
    }
});
回忆那么伤 2024-11-12 17:21:32

您可以使用 JavaScript 事件取消选择“不匹配”,也可以使用无法选择“不匹配”的 div 模拟下拉列表。

You can either use a JavaScript event to deselect the "no match" or use a div simulated droplist where "no match" cannot be selected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文