我正在尝试用 jquery 替换跨度类中的内容。我知道我的 jquery 文件正在被读取,因为第一行有效。本质上,jquery 的第一行将新通知添加到通知列表中。第二行查询应该用新的@unseen_notifications.count 替换站点上的现有号码。jquery 文件的第二行不起作用。我如何解决它?
jQuery:
$('#user_notifications').prepend("<%= j render(@user_notifications) %>");
$('#red-count').html.replaceWith("<%= @unseen_notifications.count %>");
html:
<span class="red-count">
<%= @unseen_notifications.count %>
</span>