0

我有一个带有四个单选按钮的表单,我不知道如何为该单选按钮添加标签,就像这样

标签 ........ Radio1Radio2Radio3Radio4

单选按钮代码:

%div{"data-role" => "fieldcontain"}
  //I think here i need to add something
  %div{"data-role" => "controlgroup", "data-type" => "horizontal"}
    - @models.each do |rep| 
      %label{for: "#{rep.text}_#{c.id}"}= rep.text
      = radio_button_tag "answers[#{c.id}]", id: "#{rep.text}_#{c.id}"

我尝试了几种方法,但我能得到的最好的方法是这样的标签

标签

收音机 1 收音机 2 收音机 3 收音机 4

4

1 回答 1

0

我只是想通了。我需要的是第二行的 %fieldset 而不是 %div

上面代码的前三行,需要看起来像这样

%div{"data-role" => "fieldcontain"}
  %fieldset{"data-role" => "controlgroup", "data-type" => "horizontal"}
    %legend= Label
于 2013-04-07T17:28:49.173 回答