Labels for radio buttons in rails form

前端 未结 5 982
天命终不由人
天命终不由人 2020-12-04 06:15

My question is similar to this one but for a Rails app.

I have a form with some radio buttons, and would like to associate labels with them. The label f

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-04 06:47

    This an example from my project for rating using radio buttons and its labels

    <%= form.radio_button :star, '1' %> <%= form.label :star, '☆', value: '1' %> <%= form.radio_button :star, '2' %> <%= form.label :star, '☆', value: '2' %> <%= form.radio_button :star, '3' %> <%= form.label :star, '☆', value: '3' %> <%= form.radio_button :star, '4' %> <%= form.label :star, '☆', value: '4' %> <%= form.radio_button :star, '5' %> <%= form.label :star, '☆', value: '5' %>

提交回复
热议问题