作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 jQuery Autocomplete plugin ,但我在结果突出显示方面遇到一些问题。当找到匹配项,但输入的关键字包含空格时,不会突出显示。示例:
搜索 =“foo”,结果 =“foo bar”,显示 =“foo bar”
搜索 =“foo ba”,结果 =“foo bar”,显示 =“foo bar”
所以,我正在尝试使用 highlight option 来解决这个问题自动完成函数的一部分,您可以使用函数对结果执行一些自定义操作。目前我有这个:
$('.autocomplete').autocomplete('getmatch.php', {
highlight: function(match, keywords) {
keywords = keywords.split(' ').join('|');
return match.replace(/(get|keywords|here)/gi,'<b>$1</b>');
}
});
替换函数将字符串中所有匹配的单词替换为粗体版本,有效。但是,我不知道如何将关键字放入该函数中。我想我会把它们分开,然后用“|”连接它们,所以“foo bar”最终就像“foo|bar”。但这样的事情似乎不起作用:
return match.replace(/(keywords)/gi,'<b>$1</b>'); // seen as text, I think
return match.replace('/'+(keywords)+'/gi','<b>$1</b>'); // nothing either
有什么想法吗?
最佳答案
使用RegExp
constructor从字符串创建 RegExp 对象:
$('.autocomplete').autocomplete('getmatch.php', {
highlight: function(match, keywords) {
keywords = keywords.split(' ').join('|');
return match.replace(new RegExp("("+keywords+")", "gi"),'<b>$1</b>');
}
});
关于jquery - 突出显示 jQuery.autocomplete 的多个关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/957207/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!