我在表单上显示错误,但即使表单有效(我的表单带有背景和边框) - 它也不会消失。
这是屏幕截图:
这是我的js:
$(".login").validate({
rules: {
"user[email]":{
email: true,
required: true
},
'user[password]': {
required: true,
minlength: 6,
remote: {
url: "http://127.0.0.1:3000/checkpass",
//url: "http://91.228.126.168:3000/checkpass",
type: "get",
data: {
email: function() { return $("#user_email").val(); }
}
}
}
},
messages: {
"user[password]": {
remote: "You entered wrong credentials"}
},
errorContainer: "#messageBox1",
errorLabelContainer: "#messageBox1 ul",
wrapper: "li"
})
CSS:
#messageBox1{
display: none;
}
#messageBox1{
width: 280px;
padding: 20px 0 20px 20px;
border-radius: 5px;
background: rgb(252, 248, 227) ;
border: solid 1px rgb(192, 152, 83);
margin-bottom: 10px;
}
我该如何解决这个问题?