小编b13*_*692的帖子

window.confirm()和justify()之间的区别

window.confirm()和just有confirm()什么区别?与alert()和类似prompt()

window.每次都需要写吗?

javascript

3
推荐指数
1
解决办法
1745
查看次数

获取textarea的统计信息(单词,行,字符)

我想计算文本区域的单词,字符和行数.这是我的代码:这样做是否完美?

function getStats() {
  var text = textarea.value,
    chars = text.length,
    words = text.split(/\S+/g).length - 1,
    lines = text.split("\n").length;
  return lines + " lines, " + words + " words, " + chars + " chars";
}
Run Code Online (Sandbox Code Playgroud)

有任何更正?

javascript

0
推荐指数
2
解决办法
169
查看次数

标签 统计

javascript ×2