gpt4 book ai didi

javascript - 使用 TextBoxFor 屏蔽电话号码

转载 作者:行者123 更新时间:2023-11-29 21:58:20 27 4
gpt4 key购买 nike

我想使用 html 助手 (TextBoxFor) 屏蔽电话号码

这是我的代码

  Model :
[Required(ErrorMessageResourceType =
typeof(ProcRec.Ressources.Candidat.ErreurValidation),
ErrorMessageResourceName = "num_tel_obligatoire")]
[RegularExpression(@"[0][6]\-\d{2}\-\d{2}\-\d{2}\-\d{2}$",
ErrorMessageResourceType =
typeof(ProcRec.Ressources.Candidat.ErreurValidation),
ErrorMessageResourceName = "num_tel_faux")]
public string num_tel { set; get; }

查看:

     <script type="text/javascript">
jQuery(function($){
$("#date").mask("99/99/9999");
$("#num_tel").mask("(999) 999-9999");
$("#tin").mask("99-9999999");
$("#ssn").mask("999-99-9999");
});

</script>

<td>@Html.LabelFor(model => model.num_tel)</td>
<td>@Html.TextBoxFor(model => model.num_tel)</td>

验证正常

但是说到面具,我什么也得不到

他们是我得到的结果

http://postimg.org/image/gm1ygs6fn/

.......

最佳答案

我找到了解决办法。
问题是我没有安装 jQuery.MaskedInput 插件。

要安装 jQuery.MaskedInput,请在程序包管理器控制台中运行以下命令:

PM> Install-Package jQuery.MaskedInput -Version 1.3.1 

关于javascript - 使用 TextBoxFor 屏蔽电话号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25240719/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com