jQuery 自动完成:根据字段中的文本更改文本样式
所以我有一个集成了 jQuery 自动完成的输入。我不知道如何解释这一点。我正在尝试更改自动完成中文本的样式(如果键入),例如谷歌的自动完成功能:
在自动完成中,“stackover”比单词的其余部分更轻。
这是用于文本的 CSS: .ui-menu .ui-menu-item a
有谁知道如何做到这一点?
多谢
So I have an input which I integrated jQuery autocomplete. I don't know how to explain this. I am trying to change the style of the text in the autocomplete if is typed, something like google has for its autocomplete:
Note that in the autocomplete, 'stackover' is lighter than the rest of the word.
This is the CSS which is used for the text: .ui-menu .ui-menu-item a
Does anyone know how to do this?
Thanks alot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以订阅
open
事件并在匹配的术语周围附加一个范围,以便您可以相应地设置其样式:这是一个 现场演示。
You could subscribe for the
open
event and append a span around the matched term so that you could style it accordingly:Here's a live demo.