简单的编辑器模板
我正在尝试使用 jquery 屏蔽文本框,即:电话号码。我认为更好的方法可能是将一个类应用于我在模型上给予“电话”UIHint 的任何字段。我似乎找不到任何关于如何使用基本字符串字段执行此操作的示例。大量的日期时间示例都很棒,但它们基于特定类型。
谁能指出我如何实现这一目标的正确方向?或者如果这是一个坏主意,就打我的头? ;)
I'm trying to mask textboxes using jquery ie: phone numbers. I thought a better way to do it might be to apply a class to any field that I give the UIHint of "phone" to on the model. I can't seem to find any examples of how to do this with basic string fields. The datetime examples that abound are great, but they are based on a specific type.
Can anyone point me in the right direction on how to accomplish this? Or slap me upside the head if it's a bad idea? ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MVC 3 中,您可以在模型上使用数据注释,如下所示:
In MVC 3, you can use a data annotation on your model, like so: