如何在JQuery或Javascript中计算一对标签中的字符数(空格被排除在外)?

时间:2009-11-19 12:44:03

标签: javascript jquery spaces

如何计算JQuery或Javascript中的一对标签中的字符(排除空格)?什么功能?

例如:

<pre id="mytext">This is the text.      This is the text.</pre>

如何知道$(“#mytext”)中有多少个字符或单词?

1 个答案:

答案 0 :(得分:7)

像这样:

var chars = $('#mytext').text().replace(/ /g, '').length;

如果要排除任何空格,而不仅仅是空格:

var chars = $('#mytext').text().replace(/\s/g, '').length;