中文验证

js验证中文

 function isNoChinese(v){
        var reg=/^([\u4E00-\u9FA5]|[\uFE30-\uFFA0])+$/gi;
        if (reg.test(v)) return true;
        else return false;
    }

 if(!isNoChinese(document.billform.alias.value)){
            alert("真实姓名需要写中文");
            document.billform.alias.focus();
            return false;
        }

php验证

if (!preg_match("/^[\x{4e00}-\x{9fa5}]+$/u", $_POST['pay_name'])) {
    echo json_encode('用户名必须写中文', '204');exit();
}

你可能感兴趣的:(中文验证)