javascript用户输入中的正则表达式

时间:2018-12-15 18:07:58

标签: javascript jquery

我在javascript中遇到了正则表达式问题。我想做的是一个表单寄存器,我必须在其中验证名字,所以我决定使用javascript验证(您能告诉我使用js是更好的选择还是使用ajax php reg验证?)。因此,我通过检查一些教程并从Google阅读内容来编写代码,但是我仍然遇到问题。它不起作用!它使用jquery在模糊事件上运行,因此请得到您的帮助。 我要检查的模式是用户输入中的特殊字符 / [\'^£$%&*()} {@#〜?> <>,​​| = _ +] + $ / g;

这是我的脚本:

                $(document).on('blur','.first_name_input', function() {

                    var firstNameInput = $(".first_name_input").val();

                    if (firstNameInput !== '') {

                        //var exp = /[a-zA-Z0-9-]+$/g;
                        var exp = /[\'^£$%&*()}{@#~?><>,|=_+]+$/g;
                        //if (firstNameInput.test(/^[\'^£$%&*()}{@#~?><>,|=_+-]+$/)) {
                        //if (firstNameInput.match(/[a-zA-Z0-9]*/g)) {
                        if (firstNameInput.match(exp)) {
                            var firstnameValidity = "<div class='name_not_valid_div'>&times; Not allowed characters present!</div>";
                            $('body').prepend(firstnameValidity);
                            $(".name_not_valid_div").hide().fadeIn('slow');

                            if (!errorArray.includes("firstName")){
                                errorArray.push("firstName");
                            }
                        } else {
                            $(".name_not_valid_div").hide();

                            if (errorArray.includes("firstName")){
                                for(var i = errorArray.length - 1; i >= 0; i--) {
                                    if(errorArray[i] === "firstName") {
                                       errorArray.splice(i, 1);
                                    }
                                }
                            }
                        }
                    }

                });

我的html代码是:

<tr>
                <td class="label">First Name: </td>
                <td class="input"><input type="text" name="first_name" class="input_bar first_name_input" size="30" Placeholder="First Name" /><br/></td>
            </tr>

1 个答案:

答案 0 :(得分:2)

第一:使用.trim()避免使用左/右空格或什至没有任何字符的空格$(".first_name_input").val().trim();

2nd:用于验证

// if the string has special characters
function string_has_spec_char(str){
    var reg = /[~`!#@$%\^&*+=\-\[\]\\';,_./{}\(\)\|\\":<>\?]/g;
    return reg.test(str);
}
// check if string has spaces
function string_has_spaces(str) {
    var reg = /\s/g;
    return reg.test(str);
}

并像使用它

if(string_has_spec_char(firstNameInput) === false){
   // the first name doesn't have special characters
}

if(string_has_spaces(firstNameInput) === false){
   // the first name doesn't have spaces
}