答案 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;
}