Spring MVC 验证错误样式
我想对我的表单进行样式设计,以防出现错误。 标准用法是在
的帮助下打印错误,
但我也想标记相应的文本字段 - 也许通过添加额外的样式。
这可以通过简单的方式完成吗?
预先感谢并欢呼
马丁
I would like to style my forms in case of errors a bit more.
Standard-usage is to print the error with help of <f:errors path="name" cssClass="error" />
But I want to mark the corresponding text fields as well - maybe by adding an additional style.
Can this be done in an easy way?
Thanks in advance and cheers
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这么晚了,但对其他人可能有用。
现在有一个非常简单的方法,使用 cssErrorClass,即:
So late, but it can be useful for someone else.
A very easy way now, using the cssErrorClass, i.e.:
<form:input path="id" class="form-control height30px" cssErrorClass="form-control height30px error"/>
我能想到的一种简单方法是:
在您的输入标记中:
您可以定义正常输入和错误输入样式类。
One easy way I can think of is:
And in your input tag:
You can define your normal input and error input style classes.
您也可以对输入字段执行此操作,例如:
http://www.mkyong.com/spring-mvc/spring-mvc-form-errors-tag-example/
You can do that as well for the input fields here is that example :
http://www.mkyong.com/spring-mvc/spring-mvc-form-errors-tag-example/