Asp.Net MVC - 更改错误类名称
当我在 Asp.Net MVC 中进行字段验证时,它会生成以下错误 css 类:
- input-validation-error
- field-validation-error
有没有办法可以更改生成的错误类的名称?
我用xVal。
When I do field validation in Asp.Net MVC, it's generated the following error css classes :
- input-validation-error
- field-validation-error
Is there a way that I can change the names of the error classes that are generated?
I use xVal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不了解 xVal,但就 ASP.NET MVC 方面而言,如果您查看 源 您将看到有一些表示这些值的静态只读字符串。
因此,您可以根据自己的喜好编辑源代码(这也可能修复 xVal),或者更改输出代码以某种方式使用不同的值。
如果 xVal 使用 jQuery 验证(我认为它确实...?),您可以更改“errorClass”选项的默认值。 我在这里的回答可以帮助你小路。
HTH,
查尔斯
I don't know about xVal but as far as the ASP.NET MVC side of things go, if you have a look at the source you'll see there are some static readonly strings that represent these values.
So either you edit the source to your liking (which may also fix xVal) or alter the outputting code to use different values somehow.
If xVal is using jQuery Validation (which I think it does...?) you could change it's default value for the 'errorClass' option. My answer here could help you along that path.
HTHs,
Charles
这就是我所做的:
Here's what I did:
更清洁的解决方案可能是:
More cleaner solution may be: