ASPNET MVC 3 不显眼且客户端验证无法与 placeHolder jQuery 插件一起使用

发布于 2024-12-14 17:06:29 字数 1303 浏览 3 评论 0原文

我正在尝试对 ASPNET MVC 3 项目和 placeHolder jQuery 插件使用不显眼的验证,如下所示:

[StringLength(20)]
[OnlyNumbersValidation(ErrorMessage = " ")]
[DisplayName("Fax n°")]
public string Fax { get; set; }

@Html.TextBoxFor(model => model.Fax, new { @class = "txt-input", placeholder = "Eg. Fax n°", maxlength = 31 })
@Html.ValidationMessageFor(model => model.Fax, "*", new { @class = "redtxt" })


public class OnlyNumbersValidationAttribute : RegularExpressionAttribute, IClientValidatable
{
    public OnlyNumbersValidationAttribute()
        : base(@"^\d+$")
    {
    }

    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        {
            var errorMessage = FormatErrorMessage(metadata.GetDisplayName());

            yield return new OnlyNumbersValidationRule(errorMessage);
        }
    }

    public class OnlyNumbersValidationRule : ModelClientValidationRule
    {
        public OnlyNumbersValidationRule(string errorMessage)
        {
            ErrorMessage = errorMessage;
            ValidationType = "digits";
        }
    }
}

问题是 MVC 3 和 placeHolder 插件之间的交互,因为如果我不输入任何值(并且 placeHolder 显示为文本“Eg.传真 n°” 它“认为”我输入了无效的输入,因为该文本由字母组成,而不仅仅是数字。

知道如何解决它吗?

提前致谢!吉列尔莫。

I'm trying to use unobstrusive validation with ASPNET MVC 3 project and placeHolder jQuery plugin like this:

[StringLength(20)]
[OnlyNumbersValidation(ErrorMessage = " ")]
[DisplayName("Fax n°")]
public string Fax { get; set; }

@Html.TextBoxFor(model => model.Fax, new { @class = "txt-input", placeholder = "Eg. Fax n°", maxlength = 31 })
@Html.ValidationMessageFor(model => model.Fax, "*", new { @class = "redtxt" })


public class OnlyNumbersValidationAttribute : RegularExpressionAttribute, IClientValidatable
{
    public OnlyNumbersValidationAttribute()
        : base(@"^\d+$")
    {
    }

    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        {
            var errorMessage = FormatErrorMessage(metadata.GetDisplayName());

            yield return new OnlyNumbersValidationRule(errorMessage);
        }
    }

    public class OnlyNumbersValidationRule : ModelClientValidationRule
    {
        public OnlyNumbersValidationRule(string errorMessage)
        {
            ErrorMessage = errorMessage;
            ValidationType = "digits";
        }
    }
}

The problem is the interaction between MVC 3 and placeHolder plugin, since if I enter no value (and the placeHolder is shown with the text "Eg. Fax n°" it "thinks" that I entered an invalid input because that text is composed with letters and not only numbers.

Any idea how to fix it?

Thanks in advance! Guillermo.

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

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

发布评论

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

评论(2

终弃我 2024-12-21 17:06:39

更新 placeholder 插件解决了我的问题

Updating placeholder plugin solved my issue

獨角戲 2024-12-21 17:06:37

修复了一个涉及在 html 页面中嵌套表单的错误,并将自定义验证器移动到另一个类修复了该问题。
谢谢。

Fixing an error which involved having nested forms in an html page, and moving the custom validator to another class fixed the problem.
Thanks.

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