我的类属性有两个 CSS 类值。HTML 开头是这样的:
<input type="button" wicket:id="rowButton" class="jelly-button greenGradient"/>
我想动态地将其更改为:
<input type="button" wicket:id="rowButton" class="jelly-button redGradient"/>
目前我正在这样做:
component.add(new SimpleAttributeModifier("class", "jelly-button redGradient"));
在 Wicket 中执行此操作的最佳方法是什么?必须有比我上面所做的更“正确”的方法来做到这一点。