function funcChina(str){ if(/.*[\u4e00-\u9fa5]+.*$/.test(str)) { return false; //不是中文 } return true; }