window.confirm()和just有confirm()什么区别?与alert()和类似prompt()。
我window.每次都需要写吗?
我想计算文本区域的单词,字符和行数.这是我的代码:这样做是否完美?
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 ×2