当用户单击按钮时,我想更新跨度标记中的内容。span 标签有一个名为的类fa_button_id_counter
和一个id
带有 post id 的类。它应该很简单,但我无法让它工作。有什么建议么?
查看文件:
<a class="like_button fa_button active" href="#<%= p.id %>" id="<%= p.id %>">FA</a>
<span class="fa_button_id_counter" id="<%= p.id %>">+<%= p.likes.count %></span>
.js 文件:
$ ->
$(".like_button").click (e) ->
e.preventDefault();
id = $(this).attr('href')
$(".fa_button_id_counter" + id).html "change to this"