欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Javascript实现真实字符串剩余字数提示的实例代码_javascript技巧

程序员文章站 2022-03-29 11:49:57
...
复制代码 代码如下:

//文本框剩余字数提示(字符大小)
function textLimitCheckSj(thisArea, maxLength, SpanId) {
var str = thisArea.value;
if (getChrLen(str, maxLength) > maxLength * 2) {
thisArea.value = str.substring(0, x-1);
}
else {
var varss = '(剩余字数:' + Math.floor((maxLength * 2 - getChrLen(str, maxLength)) / 2) + ')';
document.getElementById(SpanId).innerHTML = varss;
}
}
function getChrLen(str, maxLength) {
var realLength = 0, len = str.length, charCode = -1;
x = 0;
for (; (x charCode = str.charCodeAt(x);
if (charCode >= 0 && charCode realLength += 1;
else
realLength += 2;
}
return realLength;
}
?
onkeyup="textLimitCheckSj(this,50,'spOwner_Name')"> style="color: #808080">(50字以内)