把你的方法绑在keydown keyup上,不要绑在change上
在keydown的时候检测input的value是不是符合一楼那个正则
如果不符合,就把input重新赋值上一次的。
如果符合就update那个全局变量
<script language="javascript">function calculate() {
String.prototype.lenB = function(){return this.replace(/[^\x00-\xff]/g,"**").length}
//var str = "这是一个可以将汉字计算成两个字节的函数"
var str =document.all.uInput.value
alert("count = " + str.lenB())
}
</script>
请输入<input name="uInput" type="text">
<input type="button" value="计算" onclick="calculate()"/>
结果为<input name="result" type="text">
执行下这个代码你就懂了,之后用js对str.lenB()判断就行了,str.lenB()可以将汉字计算成两个字节。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)