使用selected.js,如何将图像添加到下拉列表中?
答案 0 :(得分:7)
在所选的列表项目上设置background-image
:
.chzn-results li {
background: url('path/to/img.png') no-repeat 3px center;
padding-left: 12px;
}
相应地调整像素数。
答案 1 :(得分:2)
要完成约瑟夫(我无法在他的回答中添加注释),该类自未知版本以来已更改: 这是v1.0.0中正确的css:
li.active-result {
background: url('path/to/img.png') no-repeat 3px center;
text-indent:2em;
}
约瑟夫!