如何计算JQuery或Javascript中的一对标签中的字符(排除空格)?什么功能?
例如:
<pre id="mytext">This is the text. This is the text.</pre>
如何知道$(“#mytext”)中有多少个字符或单词?
答案 0 :(得分:7)
像这样:
var chars = $('#mytext').text().replace(/ /g, '').length;
如果要排除任何空格,而不仅仅是空格:
var chars = $('#mytext').text().replace(/\s/g, '').length;