0

我想知道在使用 jquery selected 插件时如何使自动完成建议的匹配部分变粗?

有谁知道该怎么做?

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

4

3 回答 3

1

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

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

匹配的文本被包裹在一个中,<em />所以你可能需要设置 `font-style: normal;' 也是。

于 2012-06-18T13:27:30.850 回答
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);
于 2012-06-18T13:10:54.573 回答
0

或名称已更改的以下 CSS 属性

.chosen-container .chosen-results li em {
  font-style: normal;
  font-weight: bold;
}
于 2014-02-17T20:42:39.473 回答