我正在使用 Rails 和 jQuery 验证插件:在 localhost 中一切正常,但是当我将其移动到服务器时,密码确认以某种方式停止工作。
它总是说,密码不匹配。
这是代码:
'user[password]': {
required: true,
minlength: 6
},
'user[password_confirmation]': {
equalTo: "#user_password",
minlength: 6,
required: true
}
我包含的脚本:
<script src="/assets/jquery.js?body=1" type="text/javascript"></script>
<script src="/assets/jquery.validate.min.js?body=1" type="text/javascript"></script>
<script src="/assets/application.js?body=1" type="text/javascript"></script>
和html形式:
<input id="user_password" name="user[password]" size="30" type="password"></div>
<input id="user_password_confirmation" name="user[password_confirmation]" size="30" type="password">