1

如何在 Formtastic 的经典输入字段中添加预加载的常量字符串?

我已经搜索了很多,但我还没有找到如何解决这个问题。

例如,我的表单中有这行代码:

<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com"  %>

在输入字段中我要预加载:“http://”,因此用户必须只填写 URL 的剩余部分。

4

1 回答 1

2

这应该做你想要的。

<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com", :input_html => { :value => "http://" }%>
于 2012-11-06T19:13:46.447 回答