仅使用'字母','空格'验证名称。和'时期'在jQuery Validate插件中

时间:2014-06-28 07:49:23

标签: jquery regex jquery-validate

我正在使用jquery.validate.min.js文件进行验证。我想只允许username字段中的字母,空格和句点。如何显示消息?

1 个答案:

答案 0 :(得分:-1)

试试这个:

演示: http://jsfiddle.net/bJ4Tz/4/

jquery:

$(document).ready(function(){
    $("#text").keypress(function (e){
        var code =e.keyCode || e.which;
        if((code<65 || code>90)&&(code<97 || code>122)&&code!=32&&code!=46)  
        {
          alert("Only alphabates are allowed");
          return false;
        }
    });
});

文本框代码:

<input type="text" id="text"/>