我想使用observe_field
为我提供textarea的字符数,在您输入时更新。我在这里做错了什么?
<div class="field">
<%= observe_field :micropost_content,
:function => "$('micropost_content').value.length" %>
<%= f.text_area :content %>
</div>
答案 0 :(得分:0)
如果您没有设置频率选项,它将变为基于事件(onchange。)尝试:
<%= observe_field :micropost_content, :frequency => 1,
:function => "$('micropost_content').value.length" %>