我正在使用 Spring MVC<form:radiobuttons>
来显示单选按钮:
<form:radiobuttons path="selection" items="${arraySelection}" />
但是,它会水平显示它们。生成的 HTML 如下:
<span>
<input id="selection1" type="radio" value="0"" name="selection">
<label for"selection1">Off</label>
</span>
<span>
<input id="selection2" type="radio" value="1"" name="selection">
<label for"selection2">On</label>
</span>
如何垂直显示它们?