我想知道是否有人可以帮助我解决这个问题:我正在尝试使用JavaScript自动计算并显示网页上的字数。
我一直在搜索堆栈溢出和互联网,似乎没有任何关于此的例子可以提供帮助。
答案 0 :(得分:1)
function countWords(){
var Element= document.getElementsByTagName("body");
// Split the innerHtml .
var count = Element[0].textContent.split(' ').length;
document.write("Number of words: "+count);
}
countWords();
答案 1 :(得分:1)
var totwords = document.body.innerText.split(' ').length;