可以在一个表单中有多个单选按钮组吗?通常选择一个按钮会取消选择前一个按钮,我只需要取消选择一组按钮中的一个即可。
<form> <fieldset id="group1"> <input type="radio" value=""> <input type="radio" value=""> </fieldset> <fieldset id="group2"> <input type="radio" value=""> <input type="radio" value=""> <input type="radio" value=""> </fieldset> </form>
设置相等的name属性以创建组;
name
<form> <fieldset id="group1"> <input type="radio" value="value1" name="group1"> <input type="radio" value="value2" name="group1"> </fieldset> <fieldset id="group2"> <input type="radio" value="value1" name="group2"> <input type="radio" value="value2" name="group2"> <input type="radio" value="value3" name="group2"> </fieldset> </form>