ruby-on-rails – 带图像的按钮?

嘿家伙我正在尝试创建一个带图像的按钮.所以基本上,我需要下面代码的button_to版本:|

<%= link_to image_tag(product.image_url, :class => "img"), line_items_path(:product_id => product) %>    

最佳答案 这是我的解决方案:

使用按钮助手(您可以使用button_to助手方法):

<%= f.submit 'Save', :class => "button_with_image_save" %>

CSS:

.button_with_image_save {
    background: url(../images/icons/page_save.png) #f2efa8 no-repeat 10px 6px;
    text-indent:30px;
    display:block;
    cursor: pointer;
}
点赞