小编典典

将 CSS 类添加到 <%= f.submit %>

all

我的问题很简单:

<%= f.submit %>

类声明在哪里?我在多次尝试时遇到错误。


阅读 67

收藏
2022-06-02

共1个答案

小编典典

<%= f.submit 'name of button here', :class => 'submit_class_name_here' %>

这应该做。如果您遇到错误,很可能是您没有提供名称。

或者,您可以在没有类的情况下设置按钮样式:

form#form_id_here input[type=submit]

也试试吧。

2022-06-02