美文网首页
正则input只能输入汉字

正则input只能输入汉字

作者: 新篇章 | 来源:发表于2018-04-03 19:57 被阅读0次
    html
    <div class="auth_inputLabel">
            <label>姓名&nbsp;:&nbsp;&nbsp;</label>
        <input id="auth_nameInput" type="text" name="" class="auth_input" />
        <span id="authNameHint" class="authSpanHint"></span>
    </div>
    js
    function check() {
        if(!/^[\u4e00-\u9fa5]+$/gi.test(document.getElementById("auth_nameInput").value)){
            $('#authNameHint').html("只能输入汉字!");
            isChinese = false;
        }else{
            isChinese = true;
        }
    }
    

    相关文章

      网友评论

          本文标题:正则input只能输入汉字

          本文链接:https://www.haomeiwen.com/subject/laichftx.html