我想知道在使用 jquery selected 插件时如何使自动完成建议的匹配部分变粗?
有谁知道该怎么做?
在他们的示例页面上,这是他们使用的 css 选择器:
.chzn-container .chzn-results li em {
font-weight: bold;
}
匹配的文本被包裹在一个中,<em />
所以你可能需要设置 `font-style: normal;' 也是。
是的,只需在您的 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);
或名称已更改的以下 CSS 属性
.chosen-container .chosen-results li em {
font-style: normal;
font-weight: bold;
}