码迷,mamicode.com
首页 > Web开发 > 详细

js验证汉字正则表达式

时间:2017-06-27 10:01:37      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:name   value   oct   meta   htm   orm   class   验证   nbsp   

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>

<body>
    <script src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function subname() {
        var str = $("#input").val();
        var han = /^[\u4e00-\u9fa5]+$/;
        if (str == ‘‘) {
            alert("请输入汉字");
            return false;
        };
        if (!han.test(str)) {
            alert("不是汉字")
            return false;
        };
        return true;
    };
    </script>
    <form method="post" onsubmit="subname()">
        <input type="text" id="input" value="" />
        <button type="submit" id="btn">提交</button>
    </form>
</body>

</html>

效果图:

技术分享

 

js验证汉字正则表达式

标签:name   value   oct   meta   htm   orm   class   验证   nbsp   

原文地址:http://www.cnblogs.com/huanghuali/p/7083279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!