如何选择jquery使匹配的文本变为粗体?

时间:2012-06-18 13:05:00

标签: jquery jquery-plugins

我想知道如何在使用jquery选择的插件时使自动填充建议的匹配部分变为粗体?

任何人都知道如何做到这一点?

http://harvesthq.github.com/chosen/

3 个答案:

答案 0 :(得分:1)

在他们的示例页面上,这是他们使用的css选择器:

.chzn-container .chzn-results li em {
  font-weight: bold;
}

匹配的文本包含在<em />中,因此您可能需要设置`font-style:normal;'同样。

答案 1 :(得分:0)

是的只是在您的php页面中使用传递的字符串搜索结果,然后使用粗体标记进行更改。喜欢

$result='Tom Cruise';//retreived frmo database
$passed_string='Tom';//passed string from which db is searched
then
$result=str_replace($passed_string,'<b>'.$passed_string.'</b>',$result);

答案 2 :(得分:0)

或者这个名称已更改后的CSS属性

.chosen-container .chosen-results li em {
  font-style: normal;
  font-weight: bold;
}