0

我正在寻找一些插件/脚本来搜索一些字符串和粗体匹配部分(模糊搜索)

在父>键>结果示例下方。

"Hello world" => "hel" => Hello world

"Hello world" => "hewd" => Hello world

我发现了这个- 它有模糊选项,但它不能加粗匹配部分或部分字符串。

你知道这样的插件吗?

4

1 回答 1

0

一个简单的例子:

$('element').html(function() {
  return $(this).text().replace(/[hewd]/gi, '<strong>$&</strong>');
});

然后你可以通过构建一个动态的正则表达式来抽象它。以上将匹配任何h,e,w,d字母,如果要匹配整个单词,可以使用单词边界\b

/\bhello\b|[ewd]/ //=> Will match "hello" and all "e,w,d" letters

演示:http: //jsbin.com/OKUjAtO/3/edit

于 2013-09-02T19:29:55.817 回答