【发布时间】:2019-08-09 13:28:17
【问题描述】:
我有一个这样的输入表单:
<form class="login-form" action="/accounts/authenticate" method="post" id="login_form" name="login_form">
<input type="hidden" name="{{ csrf_name }}" value="{{ csrf_hash }}" />
<div class="card mb-0">
<div class="card-body">
<div class="text-center mb-3">
<i class="icon-reading icon-2x text-slate-300 border-slate-300 border-3 rounded-round p-3 mb-3 mt-1"></i>
<h5 class="mb-0">Login to your account</h5>
<span class="d-block text-muted">Your credentials</span>
</div>
<div class="form-group form-group-feedback form-group-feedback-left">
<input type="email" id="email" name="email" class="form-control" placeholder="email">
<div class="form-control-feedback">
<i class="icon-user text-muted"></i>
</div>
</div>
<div class="form-group form-group-feedback form-group-feedback-left">
<input type="password" id="password" name="password" class="form-control" placeholder="Password">
<div class="form-control-feedback">
<i class="icon-lock2 text-muted"></i>
</div>
</div>
<div class="form-group d-flex align-items-center">
<div class="form-check mb-0">
<label class="form-check-label">
<input type="checkbox" name="remember" class="form-input-styled" checked data-fouc>
Remember
</label>
</div>
<a href="/accounts/recover" class="ml-auto">Forgot password?</a>
</div>
<div class="form-group">
<button type="submit" id="login_button" class="btn btn-primary btn-block">Sign in
<i class="icon-circle-right2 ml-2"></i></button>
</div>
<span class="form-text text-center text-muted">By continuing, you're confirming that you've read our <a href="#">Terms & Conditions</a> and <a href="#">Cookie Policy</a></span>
</div>
</div>
</form>
这是我的 jquery 验证代码:
$("#login_form").validate({
rules: {
email: {
required: true,
email: true,
},
password: {
required: true,
minlength: 12,
},
},
messages: {
email: {
required: "Please enter valid email",
email: "Please enter valid email",
},
},
});
我不知道为什么它不起作用,是因为没有使用标签还是什么?因为我之前在带有标签的表单上使用了相同的脚本并且它正在工作。那么什么会导致验证不起作用?
【问题讨论】:
-
这可能会有所帮助。 enter link description here
-
似乎在这里工作jsfiddle.net/g9sx2duf
-
@Keith 很奇怪,在我的代码中它只是提交而不做任何验证。你知道是什么原因造成的吗?
-
在没有看到所有代码的情况下,我会首先检查以确保验证正在点击页面(在代码中添加 console.log 以查看它是否正在点击)。另外,请确保没有另一个具有相同名称的 id
-
@keith 这是我完整的 js jsfiddle.net/agtqxp48