【发布时间】:2012-12-16 16:22:06
【问题描述】:
我在我的 Rails 应用程序中使用 simple_form,我尝试将 form-horizontal 类添加到我的表单中。
<form accept-charset="UTF-8" action="/account/orders" class="simple_form new_order" data-validate="true" enctype="multipart/form-data" id="new_order" method="post" novalidate="novalidate">
当我使用html: { class: "form-horizontal" } 时,它会将class="simple_form new_order" 更改为class="simple_form form-horizontal"。
我应该怎么做才能保持new_order 上课?
【问题讨论】: