开发者

Validating a form for ONLY letter inputs

开发者 https://www.devze.com 2023-03-26 11:19 出处:网络
Im validating a form but im struggling to get it to only accept letters for firstname and lastname fields

Im validating a form but im struggling to get it to only accept letters for firstname and lastname fields

hope u can help

heres my code:

$(document).ready(function(){
// Place ID's of all required fields here.
required = ["firstname", "lastname", "email"];
// If using an ID other than #email or #error then replace it here
email = $("#email");
errornotice = $("#error");
// The text to show up within a field when it is incorrect
emptyerror = "Please fill ou开发者_Python百科t this field.";
emailerror = "Please enter a valid e-mail.";
onlyletters = "Only letters allowed.";

$("#theform").submit(function(){    
    //Validate required fields
    for (i=0;i<required.length;i++) {
        var input = $('#'+required[i]);
        if ((input.val() == "") || (input.val() == emptyerror)) {
            input.addClass("needsfilled");
            input.val(emptyerror);
            errornotice.fadeIn(750);
        } else {
            input.removeClass("needsfilled");
        }
    }


        // Only Letters.
    if (!/^([a-zA-Z])+$/.test(errornotice.val())) {
        errornotice.addClass("needsfilled");
        errornotice.val(onlyletters);
    }


    // Validate the e-mail.
    if (!/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(email.val())) {
        email.addClass("needsfilled");
        email.val(emailerror);
    }

    //if any inputs on the page have the class 'needsfilled' the form will not submit
    if ($(":input").hasClass("needsfilled")) {
        return false;
    } else {
        errornotice.hide();
        return true;
    }
});

// Clears any fields in the form when the user clicks on them
$(":input").focus(function(){       
   if ($(this).hasClass("needsfilled") ) {
        $(this).val("");
        $(this).removeClass("needsfilled");
    }
});
}); 


Should this line be testing against errornotice.val() or firstname.val()?

if (!/^([a-zA-Z])+$/.test(errornotice.val())) {

// Maybe this is what you intended.
// This requires adding some more variables earlier when you set email and errornotice
email = $("#email");
errornotice = $("#error");
// Add vars for first/lastname
firstname = $("#firstname");
lastname = $("#lastname");

if (!/^([a-zA-Z])+$/.test(firstname.val())) {
    firstname.addClass("needsfilled");
    firstname.val(onlyletters);
}
// then do the same for lastname
if (!/^([a-zA-Z])+$/.test(lastname.val())) {
    lastname.addClass("needsfilled");
    lastname.val(onlyletters);
}

However, your regex of letters only is going to eliminate a lot of valid names including apostrophes, diacritics, umlauts, etc.

0

精彩评论

暂无评论...
验证码 换一张
取 消