我正在使用ruby on rails上的web应用程序,但在输入字段名称上面临一些问题。我需要使用手动输入字段名称Jquery
。
默认为rails输入字段类型:
<input id="post_title" class="form-control" type="text" name="post[title]" placeholder="Post Title">
谢谢
答案 0 :(得分:-1)
您可以使用text_field_tag。
http://apidock.com/rails/ActionView/Helpers/FormTagHelper/text_field_tag
请阅读官方的ror文档。
实施例
text_field_tag'您的自定义名称'
甚至
text_field_tag:your_custom_name