表单验证正则表达式摆脱小写字符

时间:2012-10-03 22:50:41

标签: jquery regex webforms

在文本框中输入除小写字母以外的任何字符时,尝试更改类。但是,我确信有一些愚蠢的小东西导致这个,它没有显示console.log“哟!”。这是javascript:

$(function(){
    $("input[name='name']").keyup(function(){
        var str = $(this).val();
        var badChars = new RegExp("[^a-z]");
        if (str.indexOf(badChars)!=-1){
            console.log("yo!");
            $(this).removeClass("good");
            $(this).addClass("error");
        }
    });
});

我搞砸了什么?

1 个答案:

答案 0 :(得分:2)

$(function() {
    // Don't need to create new RegExp object on each keyup event.
    // Just create it once:
    var badChars = new RegExp("[^a-z]");

    $("input[name='name']").keyup(function() {
        // Use RegExp.test() method to check 
        // is string matches the regular expression.
        if (badChars.test(this.value)) {
            console.log("yo!");
            $(this).removeClass("good")
                   .addClass("error");
        }
    });
});

RegExp.test() method