我正在使用名为charCount的 jQuery 插件来显示某些文本区域的字符计数器,它工作得很好,但是当我在页面上添加新的文本区域(动态)时,新的文本区域没有计数器,我是新手,这是我使用插件的方式:
$('.message-form').charCount({
allowed: 140,
warning: 20
});
更新解决方案:
$(".message-form").live("click", function(){
if ($(this).data('hascharcount') == undefined) {
$(this).data('hascharcount', true).charCount({ allowed: 140, warning: 20 });
}
});