Spring MVC 验证错误样式

发布于 2024-12-11 07:20:25 字数 196 浏览 0 评论 0原文

我想对我的表单进行样式设计,以防出现错误。 标准用法是在 的帮助下打印错误,

但我也想标记相应的文本字段 - 也许通过添加额外的样式。

这可以通过简单的方式完成吗?

预先感谢并欢呼

马丁

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

染墨丶若流云 2024-12-18 07:20:25

这么晚了,但对其他人可能有用。
现在有一个非常简单的方法,使用 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"/>

苦笑流年记忆 2024-12-18 07:20:25

我能想到的一种简单方法是:

<c:set var="inputCls" value="niceInputCls" scope="page" />

<form:errors path="name" cssClass="error">
<c:set var="inputCls" value="errorInputCls" scope="page" />
</form:errors>

在您的输入标记中:

<form:input path="name" cssClass="${inputCls}" />

您可以定义正常输入和错误输入样式类。

One easy way I can think of is:

<c:set var="inputCls" value="niceInputCls" scope="page" />

<form:errors path="name" cssClass="error">
<c:set var="inputCls" value="errorInputCls" scope="page" />
</form:errors>

And in your input tag:

<form:input path="name" cssClass="${inputCls}" />

You can define your normal input and error input style classes.

云醉月微眠 2024-12-18 07:20:25

您也可以对输入字段执行此操作,例如:

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文