如何在Rails中使用text_field表單助手在HTML5表單中包含'autofocus'屬性?在Rails中使用自動對焦和text_field表單助手
例如<%= f.text_field:email%> 自動對焦在哪裏?
感謝
如何在Rails中使用text_field表單助手在HTML5表單中包含'autofocus'屬性?在Rails中使用自動對焦和text_field表單助手
例如<%= f.text_field:email%> 自動對焦在哪裏?
感謝
f.text_field :email, autofocus: true
這將工作:
text_field_tag :reseller, '', autofocus: true
注意空value
說法。
<%= 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;" %>
啊,那工作。正在尋找它產生 但autofocus =「true」也起作用。 謝謝 – Lee 2010-05-19 16:06:29
對我來說,autofocus =「true」不起作用,autofocus =>「true」只是在用Chrome和Arora顯示頁面時(不適用於IE和Firefox)... – 2010-05-30 07:54:37
這很奇怪,因爲它不會改變任何... – 2010-05-31 12:53:21