字计数器

假设你有一个 <textarea>,并且你想要检索有关以下数量的信息:

  • 人物(总数)
  • 人物(没有空格)
function wordCount( val ){
    var wom = val.match(/\S+/g);
    return {
        charactersNoSpaces : val.replace(/\s+/g, '').length,
        characters         : val.length,
        words              : wom ? wom.length : 0,
        lines              : val.split(/\r*\n/).length
    };
}

// Use like:
wordCount( someMultilineText ).words;   // (Number of words)

jsFiddle 示例