ASP.NET MVC 3 检查页面是否验证

发布于 2024-12-16 23:44:16 字数 188 浏览 1 评论 0原文

我如何检查表单/页面是否经过验证?

例如

 if ($('.uiModalContent > form') HAS VALIDATION) {
      $.validator.unobtrusive.parseDynamicContent('.uiModalContent');
 }

How would I check if a form / page had validation on it?

e.g.

 if ($('.uiModalContent > form') HAS VALIDATION) {
      $.validator.unobtrusive.parseDynamicContent('.uiModalContent');
 }

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

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

发布评论

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

评论(3

空袭的梦i 2024-12-23 23:44:16

这里是在黑暗中进行的温和拍摄,但您可能会检查为什么

$(this).valid() == null //'this' is your form of course

//or

jQuery.Validator == null //global though, not form specific

不直接解析内容?

A mild shot in the dark here but you could potentially check if

$(this).valid() == null //'this' is your form of course

//or

jQuery.Validator == null //global though, not form specific

Why not just parse the content anyways?

贱贱哒 2024-12-23 23:44:16

这有点 hacky,但您可以计算验证对象中验证规则的数量。也许是这样的:

function HasValidation(selector){
    var propCount = 0;
    for(var prop in $(selector).validate().settings.rules){
         propCount++;
    }
    return propCount > 0;
}

然后在你的 if 语句中调用:

HasValidation('.uiModalContent > form')

只是一个想法......

This is a bit hacky but you could count the number of validation rules in the validate object. Maybe something like this:

function HasValidation(selector){
    var propCount = 0;
    for(var prop in $(selector).validate().settings.rules){
         propCount++;
    }
    return propCount > 0;
}

and then in your if statement call:

HasValidation('.uiModalContent > form')

Just an idea...

弄潮 2024-12-23 23:44:16

我在自己寻找答案时遇到了这个问题,但收效甚微。所以我开始玩萤火虫和一些形式并想出了:

    if ($('#myform').data('validator') != null) {

        console.log('has validator');
    }
    else {
        console.log('no validator');
    }

I came across this question while searching for the answer to it myself with little success. so i started playing with firebug and some forms and came up with:

    if ($('#myform').data('validator') != null) {

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