我在 Chrome 中测试了这段代码,似乎有一个涉及换行符的错误。在我实际使用所有字符之前,我已经达到了最大长度。
var ta = document.getElementById('myText');
document.getElementById('max').innerHTML = ta.maxLength;
setInterval(function() {
document.getElementById('count').innerHTML = ta.value.length;
}, 250);
<textarea id="myText" maxlength="200" style="width:70%;height:130px">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s
Type more words here...
</textarea>
<div>
Char Count <span id="count">0</span>/<span id="max">0</span>
</div>
如何准确获取文本区域的字符数?
更新 1 我向 Chromium 团队报告了这个错误,它似乎是低优先级的。
更新 2 该错误已合并到另一个错误中。
更新 3 该错误似乎已修复!