主题:请教:如何在一个表单中加入两组radiobutton?
<form name="frmRegInf" method="post" action="setReginfo.jsp?>
<table>
<td> <input type="radio" name="sex" value="男" >男
<input type="radio" name="sex" value="女" >女
</td>
<td> <input type="radio" name="11" value="1" >1
<input type="radio" name="11" value="2" >1
</td>
</table>
</form>
假设就这样的,每组选中一个再提交
上面这样就只能选中四个选项中的一个啦,我要两组每组选中一个
请问如何解决呢?谢谢
<table>
<td> <input type="radio" name="sex" value="男" >男
<input type="radio" name="sex" value="女" >女
</td>
<td> <input type="radio" name="11" value="1" >1
<input type="radio" name="11" value="2" >1
</td>
</table>
</form>
假设就这样的,每组选中一个再提交
上面这样就只能选中四个选项中的一个啦,我要两组每组选中一个
请问如何解决呢?谢谢