我有一个View代码,代码中的渲染如下所示。
render: function() {
var $el = $(this.el);
$el.html(this.template({diarysCollection: this.collection}));
$("#updateStatusContent").charCount({
css:'counter',
cssWarning:'counter_warning',
cssExceeded:'counter_exceeded',
allowed:750,
warning:50,
counterText:text_characters_left + " "
});
.....
但模板中存在的html元素 updateStatusContent 尚未就绪,因此jquery charcount不起作用。