gpt4 book ai didi

ruby-on-rails - 如何在 Rails 表单中将复选框和标签保持在同一行?

转载 作者:行者123 更新时间:2023-12-03 06:32:45 25 4
gpt4 key购买 nike

如何使复选框的标签与包含表单的 Rails View 中的复选框保持在同一行?

当前标签位于下一行:

<div class="span6 offset3">
<%= form_for(@user) do |f| %>
<%= render 'shared/error_messages', object: f.object %>

<%= f.label :name %>
<%= f.text_field :name %>

<br>
<%= f.check_box :terms_of_service %>
<%= f.label :terms_of_service, "I agree to the #{link_to 'Terms of Service', policies_path}.".html_safe %>
<br><br>

<%= f.submit "Create my account", :class => "btn btn-large btn-primary" %>
<% end %>

谢谢你,亚历山德拉

最佳答案

根据bootstrap wiki ,一定是

<label class="checkbox">
<input type="checkbox"> Check me out
</label>

在 Ruby on Rails 中是

<%= f.label :terms_of_service do %>
<%= f.check_box :terms_of_service %>
I agree to the <%= link_to 'Terms of Service', policies_path %>.
<% end %>

关于ruby-on-rails - 如何在 Rails 表单中将复选框和标签保持在同一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12488051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com