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

最佳答案

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

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

相应地调整像素数。

09-25 16:00