使用chosen.js,如何将图像添加到下拉项中

Using chosen.js, how would I add images to the dropdown items?

本文关键字:添加 图像 js chosen 使用      更新时间:2023-09-26

使用chosen.js,如何将图像添加到下拉项中?

通过在所选列表项上设置background-image

.chzn-results li {
    background: url('path/to/img.png') no-repeat 3px center;
    padding-left: 12px;
}

相应地调整像素计数。

为了完成Joseph(我无法在他的回答中添加注释),类从未知版本开始发生了更改:以下是v1.0.0:中正确的css

li.active-result {
    background: url('path/to/img.png') no-repeat 3px center;
    text-indent:2em;
}

噢,约瑟夫!