作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 form_tag 的 Rails 表单。如何利用 twitter bootstrap 的样式添加复选框,以及如何利用该值?它是作为参数传入的吗?
我的表单是这样的:
<%= form_tag({action: :import}, multipart: true, class: "form-inline") do %>
<%= label_tag(:uploaded_file, "Stuff to upload:") %>
<%= file_field_tag(:uploaded_file, class: "input-file") %>
<%= submit_tag("Upload", class: "btn btn-primary" %>
<%= button_tag("Cancel", type: 'reset', class: "") %>
<% end %>
最佳答案
这是我如何让我的复选框看起来像 Bootstrap-y(Rails 4.2、Bootstrap 3.3) - 请注意,这是在 form_for(@model_name) do |f|
内,因此是 f block 变量:
<div class="field form-group">
<div class="checkbox-inline">
<%= f.check_box :evac_waiver %>
<%= f.label :evac_waiver, "Evacuation Waiver signed and accepted" %><br>
</div>
</div>
关于ruby-on-rails - 带有 Twitter Bootstrap for Rails 表单标签的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20958671/
我是一名优秀的程序员,十分优秀!