激活 jQuery 手风琴部分并出现验证错误

发布于 2024-08-28 15:19:36 字数 124 浏览 7 评论 0原文

我在 ASP.NET MVC 应用程序中使用 xVal 进行客户端验证。由于其中一个表单中有太多字段,因此我将其分成几部分,并使用 jQuery 手风琴同时显示一个部分。 当用户单击“提交”时,有没有办法激活包含验证错误的手风琴部分?

I am using xVal for client validation in an ASP.NET MVC application. Since I have too many fields in one of the forms, I split it into sections and used jQuery accordion to display one section at the same time.
Is there a way to activate the accordion section which contains validation errors when the user clicks submit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

嘿嘿嘿 2024-09-04 15:19:36

尝试这个代码,它不会激活面板,但会显示它(相同的结果)

            $('input#submitBuuton')
            .live("click", function() {   
                $('form').submit();     
                $('#formHolder').find('span.field-validation-error').parents('fieldset').find('legend').next().show();
                return false;
            });

Try this code, it won't activate the panel but it will show it (same result)

            $('input#submitBuuton')
            .live("click", function() {   
                $('form').submit();     
                $('#formHolder').find('span.field-validation-error').parents('fieldset').find('legend').next().show();
                return false;
            });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文