struts2中的Action Message标记

Sri*_*san 6 struts2

我是Struts如何在struts2 jsp页面中修饰动作消息和动作错误的新手?

<s:actionmessage/>
<s:actionerror/>
Run Code Online (Sandbox Code Playgroud)

Sri*_*san 4

您可以使用 css 样式以及 jquery theme 属性来装饰您的操作错误和操作消息。

<div class="error"><s:actionerror theme="jquery"/></div>
<div class="message"><s:actionmessage theme="jquery"/></div>

.message li
{
    font-size: 14px;
    color: #000066;
    text-align: center;
    list-style: none;
    font-family: Trebuchet MS,sans-serif,inherit,Arial,monospace;
}

.error li
{
    font-size: 14px;
    color: #990000;
    text-align: center; 
    list-style: none;
    padding-right: 50px;
}
Run Code Online (Sandbox Code Playgroud)