Jquery表单验证:显示网页特定部分的所有错误

发布于 2025-01-02 13:18:42 字数 229 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅的被狗咬 2025-01-09 13:18:43

根据您可以为此插件提供的选项(请参阅 http://docs.jquery.com /Plugins/Validation/validate#options),您可以指定 errorLabelContainererrorContainer 选项,它将错误消息分组到单个或多个容器中。

取自网站:

<ul id="messageBox"></ul>

样本

$("#myform").validate({
   errorLabelContainer: "#messageBox",
   wrapper: "li",
   submitHandler: function() { alert("Submitted!") }
})

According to the options you can provide for this plugin (see http://docs.jquery.com/Plugins/Validation/validate#options), you can specify the errorLabelContainer and errorContainer options, where it will group the error messages into a single or multiple containers.

Sample taken from site:

<ul id="messageBox"></ul>

 

$("#myform").validate({
   errorLabelContainer: "#messageBox",
   wrapper: "li",
   submitHandler: function() { alert("Submitted!") }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文