工具提示中的 MVC3 验证错误消息
我是 ASP.NET 和 MVC3 的新手。我有一个项目,其中需要在工具提示中显示 MVC3 验证错误消息而不更新 jquery.validate.unobtrusive.js。 我已经尝试过这个
但无法使其正常工作。这是我应该根据上面的链接使用的功能。它说在这里做一些事情...我不知道应该编写什么代码来在验证失败时在必填字段旁边显示带有错误图标的错误消息。
$(function() {
var settngs = $.data($('form')[0], 'validator').settings;
var oldErrorFunction = settngs.errorPlacement;
var oldSucessFunction = settngs.success;
settngs.errorPlacement = function (error, inputElement) {
//Do something here
oldErrorFunction(error, inputElement);
}
settngs.success = function (error) {
//Do something here
oldSucessFunction(error);
}
});
有人可以帮忙吗?
I am new to ASP.NET and MVC3. I have got a project where the MVC3 Validation Error Message needs to be shown in Tooltip without updating jquery.validate.unobtrusive.js.
I have tried this
But could not get it to work. Here is the function the I should be using according to the link above. It says do something here...I could not figure out what code I should write to show the error message with a error icon beside the required field when validation fails.
$(function() {
var settngs = $.data($('form')[0], 'validator').settings;
var oldErrorFunction = settngs.errorPlacement;
var oldSucessFunction = settngs.success;
settngs.errorPlacement = function (error, inputElement) {
//Do something here
oldErrorFunction(error, inputElement);
}
settngs.success = function (error) {
//Do something here
oldSucessFunction(error);
}
});
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下CSS,
然后您可以在成功和失败回调中使用这些类,
进一步检查 此链接。
You can use the following css,
Then you can make use your these classes on your success and failure callback,
Further check this link.
如果您使用 MVC3,则可以利用提供的验证。查看帐户控制器 - 注册视图,了解如何实现它的示例。
研究(查看中):
以及以下类别:
If you're using MVC3, you can leverage the validation provided. Take a look at the Account Controller - Register View for an example of how to implement it.
Research (in View):
and the Class for: