Rails のどのバージョンを使用していますか?
なぜあなたがこれをしたいのかわかりません。それが CSS の問題である場合は、より具体的にすることができます。私はこれをする必要はありませんでした。しかし…</p>
3.0.9 でそれを行う方法は、イニシャライザを作成して次のコードを追加することです。
module ActionView
module Helpers
module FormHelper
def extra_tags_for_form(html_options)
snowman_tag = tag(:input, :type => "hidden",
:name => "utf8", :value => "✓".html_safe)
method = html_options.delete("method").to_s
method_tag = case method
when /^get$/i # must be case-insensitive, but can't use downcase as might be nil
html_options["method"] = "get"
''
when /^post$/i, "", nil
html_options["method"] = "post"
token_tag
else
html_options["method"] = "post"
tag(:input, :type => "hidden", :name => "_method", :value => method) + token_tag
end
tags = snowman_tag << method_tag
content_tag(:span, tags, :style => 'margin:0;padding:0;display:inline')
end
end
end