2

我想使用 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/

. . . . . . .

4

1 回答 1

2

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

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

PM> Install-Package jQuery.MaskedInput -Version 1.3.1 
于 2014-08-12T17:28:44.230 回答