2017-02-27 71 views
0

添加蒙版,以InputTags我有我的觀點input-tag,但我想設定屏蔽每個標籤:digit-digit ,如:1-3,44-56如何在asp.net mvc5

我如何設置?

回答

0

,你可以做這樣的

首先兩個庫的頭

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.maskedinput/1.4.1/jquery.maskedinput.js"></script> 

然後在下面將是你textbox

@Html.TextBoxFor(x => x.Number, new { @class = "form-control", @id = "phone" }) 

這裏x.Number將財產 和腳本將是

<script type="text/javascript"> 
     $(function() { 
      $("#phone").mask("99-99"); 
     }); 
    </script> 
+0

感謝您的幫助,但您的幫助是爲文本框....我想爲taginput中的每個標記設置掩碼 – Saman

+0

您可以顯示有問題的代碼嗎? – Usman