ruby-on-rails – 将提交按钮图像添加到Rails表单

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 将提交按钮图像添加到Rails表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Rails中创建一个表单来提交评论,我希望提交按钮是一个图像,而不是一个 HTML按钮.在 this bit of documentation,它说代码是image_submit_tag,但我无法让它在我的代码中工作.

这是我正在使用的:

<% form_for [@post,Comment.new],:remote => true do |f| %>
<p>
    <%= f.label :body,"Add a comment" %><br />
    Name <%= f.text_field :name %><br />
    Website<%= f.text_field :website %><br />
    Twitter<%= f.text_field :twitter %><br />
    <%= f.text_area :body %>
</p>
<div id="comment-form">

    <div id="comment-button"><p>
        <%= f.image_submit_tag("comment-button.png") %></p>
        </div>
</div>
<% end %>

谢谢您的帮助.

解决方法

你可以这样做:

ERB:

<%= f.submit "" %>

CSS:

input[type="submit"]
{
  background:url(mybutton.png);
}
原文链接:https://www.f2er.com/ruby/272597.html

猜你在找的Ruby相关文章