如何在Formtastic的经典输入字段中添加预加载的costant字符串?
我搜索了很多,但我还没有找到解决方法。
例如,我在我的表单中有这行代码:
<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com" %>
并在输入字段中我想预加载:“http://”,因此用户必须只填写剩余的URL。
答案 0 :(得分:2)
这应该做你想要的。
<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com", :input_html => { :value => "http://" }%>