任何人都知道任何与MVC Unobtrusive Validation一起使用的jQuery Mask插件吗?

时间:2012-07-10 13:38:18

标签: asp.net-mvc-3 jquery-plugins unobtrusive-validation maskedtextbox

我总是在ASP.Net应用程序中使用以下掩码输入插件:

http://digitalbush.com/projects/masked-input-plugin/

不幸的是,这与MVC不显眼的验证效果不佳。验证会在每个令人讨厌的密钥上触发。另外,当输入失去焦点时,正则表达式属性总是会失败,因为它会在蒙版控件清除之前将蒙版读取为实际用户输入。

有人遇到过蒙面文本框解决方案,可以很好地运行MVC吗?

1 个答案:

答案 0 :(得分:0)

先生,您可以使用Bootstrap占位符来显示掩码Link for example



<div class="input-group">
  <span class="input-group-addon" id="basic-addon1">@</span>
  <input type="text" class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>
&#13;
&#13;
&#13;

enter image description here