我正在尝试动态更改Struts2
文本字段的样式,以根据特定条件更改背景颜色。
关于如何做到这一点或我在下面有什么不正确的指示?
<s:if test='%{contactStatusCode == "ARE" }'>
<s:set var="AREStyle" value="%{'background:#eeeeee'}"/>
<s:textfield name = "followUpComment"
id = "followUpComment[%{#index.index}]"
style = "%{#AREStyle}"
size = "15"
maxlength = "100" />
答案 0 :(得分:1)
如何更改textfield的css类
<s:textfield name="followUpComment" cssClass="%{contactStatusCode == 'ARE' ? 'areClass' : 'notAreClass'}" />