//获取字符长度
String.prototype.getBytes = function()
{
var cArr = this.match(/[^\x00-\xff]/ig);
return this.length + (cArr == null ? 0 : cArr.length);
}
val.getBytes() > 60
alert('val不能超过60个字符或30个汉字');
posted on 2010-08-12 17:48
David1228 阅读(285)
评论(0) 编辑 收藏 所属分类:
JavaScript