回答

0

我喜欢msdropdown。您可以在title标签添加路径的图像:

<select> 
    <option value="1" title="#path for the image">first</option> 
    <option value="2" title="#path for the image">second</option> 
    ... 
</select> 

在Rails中,你可以添加标题做这样的事情:

<%= f.select(:yourcolumn, Model.all.map{|p| [p.name, p.id, :title => p.image_url(:thumb)]} 

我已经前段时间遇到了类似的问题:generate HTML <select> with title inside each <option> to apply the msDropDown plugin