使用验证引擎仅显示单个错误消息

发布于 2024-12-07 06:43:17 字数 103 浏览 1 评论 0原文

我在我的 Asp.net MVC 应用程序中使用 jQuery 验证引擎。我想显示单独的错误消息。现在它在底部显示单独的错误消息和摘要。因此,了解如何仅显示单个错误消息而不是两者都非常有帮助。

Iam using jQuery Validation engine in my Asp.net MVC application. I would like to show individual error messages.Now it showing both the individual error message and also summary at the bottom. So it would be really helpful to know how can I display only the individual error messages rather than both .

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

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

发布评论

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

评论(1

纸伞微斜 2024-12-14 06:43:17

在我的弹出脚本中加载 fancybox ,即

               $("a.create-report").fancybox(
    {
        'autoDimensions':true,
        'centerOnScroll':true,
        'padding'        :'20px'
    });                      

    just added

$('#fancybox-close').click(function () {
        $(".formError").remove();
    });

    $('#fancybox-overlay').live("click",function () {
        $(".formError").remove();
    });

然后验证摘要被删除

In my popup script where fancybox is loaded ie

               $("a.create-report").fancybox(
    {
        'autoDimensions':true,
        'centerOnScroll':true,
        'padding'        :'20px'
    });                      

    just added

$('#fancybox-close').click(function () {
        $(".formError").remove();
    });

    $('#fancybox-overlay').live("click",function () {
        $(".formError").remove();
    });

Then the validation summary get removed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文