How to highlight input words in autocomplete jquery ui

后端 未结 6 2163
后悔当初
后悔当初 2020-12-25 13:46

Could you please help me in highlighting the typed words in the auto complete text box. i am already populating the autocomplete words and i need to just highlight the typed

6条回答
  •  無奈伤痛
    2020-12-25 14:28

    For a correct render in jQuery UI - v1.12.1 use "div", not "a"

    $.ui.autocomplete.prototype._renderItem = function (ul, item) {        
        var t = String(item.value).replace(
                new RegExp(this.term, "gi"),
                "$&");
        return $("
  • ") .data("item.autocomplete", item) .append("
    " + t + "
    ") .appendTo(ul); };

提交回复
热议问题