是否可以让这个函数更准确地计算单词,最重要的是计算可编辑 div 中的单词?
$(document).ready(function() {
$('.word_count').each(function() {
var input = '#' + this.id;
var count = input + '_count';
$(count).show();
word_count(input, count);
$(this).keyup(function() { word_count(input, count) });
});
});
function word_count(field, count) {
var number = 0;
var matches = $(field).val().match(/\b/g);
if(matches) {
number = matches.length/2;
}
$(count).text( number + ' word' + (number != 1 ? 's' : '') + ' aprox' );
}