2

私は Web 開発が初めてで、問題が非常に小さいことはわかっていますが、2 日経っても問題を見つけることができません。このコードを見て、私の間違いを指摘してください

ここに私のコードID @ JSFiddle ありがとう

HTML

<form id="registerForm" action="\register" method="post">
    <div class="form-group">
        <input class="form-control" type="text" name="email" placeholder="Email">
    </div>
    <div class="form-group">
        <input class="form-control" type="password" name="pass1" placeholder="Password">
    </div>
    <div class="form-group">
        <input class="form-control" type="password" name="pass2" placeholder="Confirm Password">
    </div>
    <button class="btn btn-primary" type="submit">Signup</button>
</form>

JS

$(document).ready(function () {
    $('.registerForm').bootstrapValidator({
        message: 'This value is not valid',
        feedbackIcons: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            email: {
                validators: {
                    notEmpty: {
                        message: 'The email is required and cannot be empty'
                    },
                    emailAddress: {
                        message: 'The input is not a valid email address'
                    }
                }
            },
            pass1: {
                validators: {
                    identical: {
                        field: 'pass2',
                        message: 'The password and its confirm are not the same'
                    }
                }
            },
            pass2: {
                validators: {
                    identical: {
                        field: 'pass1',
                        message: 'The password and its confirm are not the same'
                    }
                }
            }
        }

    });
});
4

3 に答える 3

3

ID でノードを取得するには、次を使用します$('#registerForm')$('.registerForm')JSで取得した場合registerFormは、<form>タグ内のクラスを検索します。

jQuery API を読むことは、このようなエラーを防ぐ良い方法です。 http://api.jquery.com/category/selectors/

于 2014-10-17T17:24:05.583 に答える
0

JavaScript は、id ではなくクラス registerForm にバインドされています。JavaScript コードで .registerForm を #registerForm に変更します。

編集: または、class="registerForm" を html の YouTube フォーム要素に追加します。

于 2014-10-04T07:40:35.347 に答える