jquery判断中文的长度

  • jquery中如何判断中文的长度。


    String.prototype.getBytes  =   function ()  {    
       var  cArr  =   this .match( / [ ^ /x00 - /xff] / ig);    
       return   this .length  +  (cArr  ==   null   ?   0  : cArr.length);    
    } 
 
    function  paramCheck(cur) {
      if (cur.value.getBytes()  >   64 ) {
     alert( " 字符超过64个字符 " );
      return   false ;
     } 
      return   true ;
   }

你可能感兴趣的:(JavaScript)