如何使用autofocus
中的HTML5
表单帮助器在text_field
表单上添加“Rails
”属性?
e.g。 <%= f.text_field :email %>
自动对焦在哪里?
由于
答案 0 :(得分:52)
f.text_field :email, autofocus: true
答案 1 :(得分:10)
这将有效:
text_field_tag :reseller, '', autofocus: true
请注意空value
参数。
答案 2 :(得分:7)
<%= f.text_field :email, nil, :autofocus => true %>
将工作。
同样,如果你想使用其他HTML5属性和CSS类,你可以写:
<%= f.text_field :email, nil, :autofocus => true, :placeholder => "Your email Here", :class => "active", :style => "color: #333;" %>