Jquery表单验证:显示网页特定部分的所有错误
我正在使用 JQuery 的验证插件来验证 HTML 表单。 http://docs.jquery.com/Plugins/Validation
默认情况下,所有验证错误都是正确的在输入旁边。 是否可以在页面顶部显示所有错误的列表,以及我使用什么代码来执行此操作?
I'm using JQuery's validation plugin to validate a HTML form. http://docs.jquery.com/Plugins/Validation
By default, all validation errors right next to the input.
Is it possible to display a list of all errors towards the top of the page, and what code what I use to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您可以为此插件提供的选项(请参阅 http://docs.jquery.com /Plugins/Validation/validate#options),您可以指定
errorLabelContainer
和errorContainer
选项,它将错误消息分组到单个或多个容器中。取自网站:
样本
According to the options you can provide for this plugin (see http://docs.jquery.com/Plugins/Validation/validate#options), you can specify the
errorLabelContainer
anderrorContainer
options, where it will group the error messages into a single or multiple containers.Sample taken from site: