<%= link_to ((image_tag 'image.png'),
url_for({:controller => 'controller_name', :action => 'action_name'}),
:class => 'quick',
:remote => true) %>
這部分代碼會產生我image.png爲紐帶。我需要這個圖像添加一些文字(圖片+文字),我想是這樣一個:的Rails 3 - 的link_to與IMAGE_TAG +文字
<%= link_to ((image_tag 'image.png', 'text'),
url_for({:controller => 'controller_name', :action => 'action_name'}),
:class => 'quick',
:remote => true) %>
而且類似的方式,但這些嘗試有不好的語法錯誤消息結束...任何人都可以請幫助我,我該如何設置它?
在此先感謝。
http://stackoverflow.com/questions/5387122/link-to-image-tag-with-text-in-rails –