【发布时间】:2012-07-25 14:21:54
【问题描述】:
我在 html 中有这个单选按钮
<input type="radio" name="group1" value="1"> Gray Scale<br>
</td>
</tr>
<tr><td align="left" valign="top" width="200">
<input type="radio" name="group1" value="2"> Old Style<br>
</td><td align="left" valign="top" width="200">
<input type="radio" name="group1" value="3"> Sharpening<br></td></tr>
但是我使用这个 Struts 代码会让我到处都没有大小和任何东西<s:radio name="option" list="#{'1':'Gray Scale', '2':'Old Style','3':'Sharpening'}" value="1" />
如何单独为 struts 2s 设置此单选按钮?
【问题讨论】: