标签:
function chkHalf(str){ for(var i=0;i { strCode=str.charCodeAt(i); if((strCode>65248)||(strCode==12288)){ alert("有全角字符"); break; } } } if(str.getBytes().length==string.length){ //全是半角 } if(str.getBytes().length > str.length && str.getBytes().length != str.length){ //混合 } if(str.getBytes().length == str.length *2){ //全是全角 }
标签:
原文地址:http://www.cnblogs.com/tnsay/p/5752566.html