可能重复:
How to make Struts radio tag create a vertical list of radio buttons
如何在Struts2中垂直对齐单选按钮,因为默认情况下生成的单选按钮水平对齐。 我正在列表中进行迭代。
<s:radio theme="simple" list="masterList" name="selectedDatabase" onclick="gotoAction(this)"/>
答案 0 :(得分:1)
<s:iterator value="masterList">
<s:radio theme="simple" name="selectedDatabase" list="#{id:name}"/><br>
</s:iterator>
其中id
将是列表的属性,您要提交,name
将成为单选按钮的标签。