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 });
}
});