답변

0

나는 msdropdown을 좋아한다. 당신은 title 태그에 이미지의 경로를 추가 할 수 있습니다 : 제가 얼마 전에 비슷한 문제에 직면 한

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

:

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

, 당신은 같은 일을하고 제목을 추가 할 수 있습니다 generate HTML <select> with title inside each <option> to apply the msDropDown plugin