jquery 验证插件选择元素未经过验证
我正在使用 jQuery 验证插件(http://bassistance.de/jquery-plugins/jquery-plugin-validation/),它适用于除 2 个选择框之外的大多数内容。我在这里创建了一个小提琴来演示这些麻烦的选择框之一: http://jsfiddle.net/tucsonlabs/ mQJCX/
如果您将月份留空并提交表单,则不会生成错误消息,即使该元素具有必需的类别。
I'm using the jQuery validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/), and it's working on most everything except 2 select boxes. I've created a fiddle here to demonstrate one of these troublesome select boxes: http://jsfiddle.net/tucsonlabs/mQJCX/
If you leave the month blank and submit the form there's no error message generated even though the element has a class of required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您对日和月字段使用了相同的名称,因此插件仅验证第一个实例。如果更改任何一个字段的名称,它将正常工作。
You have used same name for the day and month field, so the plugin validated the first instance only. If you change the name of any one field, it will function normally.