// 判断是否存在中文字符 function checkChinese(obj){ if(/.*[u4e00-u9fa5]+.*$/.test(obj)) { return true ; } return false ; }