如何使用javascript计算DIV中的字符数
您好,我希望能够使用 javascript/jquery 计算 Div 中显示的字符数。例如,
<div id=mydiv>
<p>This is my div!</p>
</div>
我想获取数字 15,因为这是 div 中包含空格的字符数。
谢谢!
Hi I want to be able to count the number of displayed characters in a Div with javascript/jquery. For example
<div id=mydiv>
<p>This is my div!</p>
</div>
I want to get the number 15 since that's how many chars in the div including spaces.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该可以解决问题。
should do the trick.
试试这个。我正在修剪以避免内容开头或结尾中出现任何空格。
如果你想在计数中保留空格,那么不要修剪它,只需使用它即可。
Try this. I am trimming to avoid any white spaces in the content start or end.
If you want to keep spaces also in the count then don't trim it just use this.
示例
http://jsfiddle.net/TrMRB/
Sample
http://jsfiddle.net/TrMRB/
如果您正在寻找 Vanilla Javascript 解决方案。
这是一个有空格的:
这是一个没有空格的:
In case you are searching for a Vanilla Javascript solution.
Here is one with whitespace:
Here is one without whitespace: