日期:2008-12-01  浏览次数:20880 次

function ischinese(s){
var ret=true;
for(var i=0;i<s.length;i++)
ret=ret && (s.charCodeAt(i)>=10000);

return ret;
}