如何突出显示与已输入文本匹配的 jQuery 自动完成结果?
我已经为客户端实现了 jQuery 自动完成。现在他们希望我突出显示(例如粗体)结果中与他们键入的文本相匹配的部分。
例如,用户输入“something”,结果如下:
something a
something b
Another something
Do something > else
此功能是否内置于 jQuery 自动完成中?如果是这样,那是什么?
或者这是我必须自己实现的事情?如果是这样,我该从哪里开始呢?
I've implemented jQuery Autocomplete 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 Autocomplete? If so, what is it?
Or is this something I'll have to implement myself? If so, where do I start with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前有同样的要求。
下面的代码可能适合您。
“您需要小心选择器”
如果您需要更多帮助来实现此代码,请告诉我。
I had the same requirement previously.
Below code may work for you.
"You need to be careful with selectors"
Let me know if you need more help to implement this code.