使用 simple_form 对标签进行分组
是否可以使用 simple_form 对输入进行分组?
我希望“邮政编码和城市”在一个 div
中作为一组而不是单独出现,并带有一个标签和两个输入。但我找不到关闭标签的开关......
Is it possible to group inputs with simple_form?
I want "Postcode and city" to appear with one label and two inputs in one div
as a group and not separately. But I cannot find a switch that turns off the label…
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
:label => 关闭一个输入上的标签false
选项。像这样:
<%= f.input :name, :label =>假%>
You can turn off the label on one input with the
:label => false
option.Like this:
<%= f.input :name, :label => false %>
@rafaelfranca 是对的。
我正在使用带有这样的地址的简单表单:
然后您将在第一个文本字段中仅获得一个标签“地址”。接下来的所有字段都将显示一个占位符。
@rafaelfranca is right.
I am using Simple Form with an address like this:
Then you will get only one label "Address" for the first text field. And all the next fields will show a placeholder.