本文介绍了可以选择两个单选按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有2个单选按钮,但可以选择两个单选按钮,
I have form with 2 radio buttons but both of the radio buttons can be selected,
<form class="descriptions" id="collection" method="post" action="">
<table width="200">
<tr>
<td>
<label>Collection</label>
<input type="radio" value="collection" />
</td>
<td>
<label>Delivery</label>
<input type="radio" value="delivery" />
</td>
</tr>
</table>
</form>
我知道这很容易,但我似乎无法找到答案,
任何帮助将不胜感激。
I know this is very easy but I can't seem to find the answer,any help would be appreciated.
推荐答案
赋予它们相同的名称。
这篇关于可以选择两个单选按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!