如何使用 Jquery 或 Javascript 知道一个段落包含多少个单词?什么功能?
如何使用 Jquery 或 Javascript 知道一个段落包含多少个单词?什么功能?
例如,句子
如何知道一个段落有多少字 包含使用 Jquery 或 Javascript?
包含 13 个单词。如何使用 Jquery 或 javascript 进行计数?
How to know how many words a paragraph contains using Jquery or Javascript? What function?
For example, the sentence
How to know how many words a paragraph
contains using Jquery or Javascript?
contains 13 words. How to count using Jquery or javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果将单词分隔符设为空格:
If you take the word separator to be whitespace:
您可以获取
p
元素的textContent
(对于 IE 为innerText
),并计算单词数,假设有一个 word< /em> 是一组由空格分隔的字符。您可以执行以下操作:
此处尝试上面的代码片段。
You can get the
textContent
(orinnerText
for IE) of thep
element, and count the words, assuming that a word is a group of characters separated by a space.You could do something like this:
Try the above snippet here.
使用 jQuery:
Using jQuery: