ASP.NET MVC 数据注释工具提示
当表单验证失败时,我被要求显示工具提示而不是纯文本。我们当前使用 asp.net MVC 3 数据注释验证器来显示验证错误消息。我对 MVC 还很陌生,我花了几个小时在网上寻找一个干净的解决方案。如果有人能指出我正确的方向,我一定会很感激。
谢谢
I have been asked to display tooltips instead of plain text when form validation fails. We are currently using asp.net MVC 3 data annotation validators to display validation error messages. I am still fairly new to MVC and I have spent hours online looking for a clean solution. If someone could point me in the right direction I would surely appreciate it.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以指定要应用于控件的 html 属性。这是使用创建控件的 HtmlHelper 方法的第二个参数来完成的。例如,在 MVC 3 中,如果您想要一个带有工具提示的文本框,当您将鼠标悬停在该文本框上时,会出现该工具提示,请使用像这样的 html title 属性。
要在服务器端代码中使用控制器中的值,您可以使用 ViewBag(或 MVC2 中的 ViewData)。所以代码看起来像这样:
视图代码看起来像这样
You can specify the html attributes that you want to apply to your control. This is done using the second parameter of your HtmlHelper method that creates the control. For example in MVC 3 if you wanted a textbox with a tooltip that appears when you hover over it, use the html title attribute like this.
To use a value from your controller in the server side code you can use the ViewBag (or ViewData in MVC2). So the code would look something like this:
and the view code would look like this
您已经完成了大部分工作,因为页面上已经显示了验证错误。您需要了解的是如何使用一些客户端脚本(javascript)才能将它们呈现为浏览器中的工具提示。
看看以下 JQuery 插件,它们可能正是您所需要的:
http://jquery.bassistance.de/tooltip/demo/
You are most of the way there as you already have the validation errors shown on the page. What you need to be looking at is how to use some client-side scripts (javascript) to be able to render these as a tooltip in the browser.
Take a look at the following JQuery plugins which may be what you are after:
http://jquery.bassistance.de/tooltip/demo/