Js 验证中文字符长度

代码如下:

  //Oracle Varchar2 一个中文对应3个Byte,所以用3个x替换
    var commentValue = commentValue.replace(/[^x00-xff]/g, "xxx");
    if (commentValue.length > 500) {
        alert("Max length is 150 Chinese or 500 English");
        return false;
    }
原文地址:https://www.cnblogs.com/scottckt/p/3255433.html