jquery 自动完成查询

标签 jquery jquery-ui autocomplete jquery-ui-autocomplete

我需要在自动完成的结果列表中添加另一个元素。该元素不应该是可点击的,并且应该充当搜索列表中的信息。

我正在尝试下面的代码并使用appendTo选项,但它似乎不起作用

var acOptions = {
    source: userNames,
    minLength: 1,
    appendTo: "<li class='ui-menu-item' role='menuitem'>Search by username </li>"
};

$('input.userName').autocomplete(acOptions);

有人可以指导我吗?

最佳答案

这是http://jqueryui.com/demos/autocomplete/#categories吗?是您要找的吗? 这是一个工作演示 http://jsfiddle.net/pomeh/XJ47e/ .

HTML 代码

<div class="demo">
    <label for="search">Search: </label>
    <input id="search" />
</div>

<p>A categorized search result. Try typing "a" or "n".</p>

Javascript代码

$.widget("custom.catcomplete", $.ui.autocomplete, {
    _renderMenu: function(ul, items) {
        var self = this,
            currentCategory = "";
        $.each(items, function(index, item) {
            if (item.category != currentCategory) {
                ul.append("<li class='ui-autocomplete-category'>" + item.category + "</li>");
                currentCategory = item.category;
            }
            self._renderItem(ul, item);
        });
    }
});


var data = [
    { label: "anders", category: ""},
    { label: "andreas", category: ""},
    { label: "antal", category: ""},
    { label: "annhhx10", category: "Products"},
    { label: "annk K12", category: "Products"},
    { label: "annttop C13", category: "Products"},
    { label: "anders andersson", category: "People"},
    { label: "andreas andersson", category: "People"},
    { label: "andreas johnson", category: "People"}
];

$("#search").catcomplete({
    delay: 0,
    source: data
});

CSS代码

.ui-autocomplete-category {
    font-weight: bold;
    padding: .2em .4em;
    margin: .8em 0 .2em;
    line-height: 1.5;
}​

关于jquery 自动完成查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10278672/

相关文章:

html - 限制 twitter bootstrap 中进度条的宽度

visual-studio-code - 在 VS CODE 中按 "ENTER"后自动替换

javascript - 如何从jquery页面上的点击事件检查父div

javascript - jQuery 使用 if/else 检查点击

jquery - 无法从 JQuery 自动完成选择选项中进行选择

javascript - jQuery - 在 Fancybox 中触发点击

jquery - jquery点击功能悬停后不起作用

javascript - 页面加载并滚动到主题标签 anchor 后执行 JavaScript

javascript - typeahead.js : How to remove value when value not in suggestion

google-maps - 将 Google Places 自动完成与 Meteor 结合使用