//---------------------------------------------------------- // 功能:判断输入是否为中文的函数 // 参数: // s // 返回值: // true 符合中文格式 // false 不符合中文码格式 //---------------------------------------------------------- function CheckIsChinese(s){ var ret=true; for(var i=0;i<s.length;i++) ret=ret && (s.charCodeAt(i)>=10000); return ret; }
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/13270.html