最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to highlight jQuery Autocomplete results that match the text already typed? - Stack Overflow

programmeradmin1浏览0评论

I've implemented jQuery Autoplete for a client. Now they want me to highlight (e.g. make bold) the the portion of the result that matches the text they've typed.

e.g. the user types "something", and the results are as follows:

something a

something b

Another something

Do something else

Is this functionality built into jQuery Autoplete? If so, what is it?

Or is this something I'll have to implement myself? If so, where do I start with that?

I've implemented jQuery Autoplete for a client. Now they want me to highlight (e.g. make bold) the the portion of the result that matches the text they've typed.

e.g. the user types "something", and the results are as follows:

something a

something b

Another something

Do something else

Is this functionality built into jQuery Autoplete? If so, what is it?

Or is this something I'll have to implement myself? If so, where do I start with that?

Share Improve this question edited Aug 22, 2011 at 11:28 Flo Edelmann 2,6131 gold badge22 silver badges34 bronze badges asked Aug 22, 2011 at 11:11 DaveDevDaveDev 42.3k73 gold badges232 silver badges395 bronze badges 3
  • 1 Which autoplete - the one in jQuery UI, or one of the other implementations? I think the (deprecated) bassistance.de autoplete does this already, for example, but the APIs are different to plug them into your page. – Rup Commented Aug 22, 2011 at 11:18
  • @Rup: this one: docs.jquery./UI/Autoplete – DaveDev Commented Aug 22, 2011 at 11:24
  • Check this out: stackoverflow./questions/9887032/… – Mircea Slimu Commented Jan 8, 2020 at 21:59
Add a ment  | 

1 Answer 1

Reset to default 2

I had the same requirement previously.

Below code may work for you.

"You need to be careful with selectors"

<script>
  $("#input-search-box")
    .autoplete({
      //your code
    })
    .data("autoplete")._renderItem = function(ul, item) {
    var items = $("<li></li>").data("ui-autoplete-item", item);
    //match and key variables highlight the user's typed input rendering in bold blue for dropdown items.
    var match = new RegExp("^" + this.term, "i"); //i makes the regex case insensitive

    //change initial typed characters of all item.label   replace is plain JS
    var key = item.label.replace(
      match,
      '<span class="required-drop">' + this.term + '</span>'
    );

    items.html("<a>" + key + "</a>").append(ul);
  }; 
</script>

Let me know if you need more help to implement this code.

发布评论

评论列表(0)

  1. 暂无评论