我将解释一下情景:
当用户输入错误的值然后将其更正为有效,直到用户点击输入之外的某处 - 显示错误表单(参见下图)。
仅当字段具有远程验证时才会显示。
我有这个表单的填充(似乎问题在于填充)。这是CSS:
#messageBox1{
display: none;
color: rgb(185, 74, 72);
}
#messageBox1{
width: 305px;
padding: 20px 0 20px 0px;
background-color: rgb(242, 222, 222);
margin-bottom: 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
和js与错误形式相关的验证码:
errorContainer: "#messageBox1",
errorLabelContainer: "#messageBox1 ul",
wrapper: "li"
andm HTML:
<div id="messageBox1">
<ul></ul>
</div>
有人可以建议解决方案吗?