【发布时间】:2014-04-30 00:15:02
【问题描述】:
当用户点击 thumbs_up 或 thumbs_down 时,这 2 个图标应替换为类似“您已投票”之类的文字。我该怎么做?
<div class="thumbsup">
<%= link_to image_tag('othericons/thumbsup_off.PNG', height: '20', width: '20', like_post_comment_path(comment.post_id, comment), method: :put, :remote => true %>
</div>
<div class="thumbsdown">
<%= link_to image_tag('othericons/thumbsdown_off.PNG', height: '20', width: '20', dislike_post_comment_path(comment.post_id, comment), method: :put, :remote => true %>
</div>
【问题讨论】:
-
我可能会考虑使用 jQuery 追加?只需在图像上附加一个 div 或文本?
标签: javascript ruby-on-rails ruby-on-rails-4