val().length这样获取的字符长度 不是实际的啊,比如中文字符它不能识别为2个字节。
1 回答
偶然的你
TA贡献1841条经验 获得超3个赞
String.prototype.len = function() // 给string增加个len ()方法,计算string的字节数
{
return this.replace(/[^\x00-\xff]/g, "xx").length;
}
然后val().len()就行了
- 1 回答
- 0 关注
- 660 浏览
添加回答
举报
0/150
提交
取消