Js 驗證中文字符長度

代碼以下:spa

  //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;
    }
相關文章
相關標籤/搜索