Multiple Selections with Radio Buttons

断了今生、忘了曾经 提交于 2021-02-11 13:55:17

问题


I need to permit more than one selection, for example one user can choose the three options or only two or one: This only permit one, correct?:

<input type="radio" name="group1" value="Milk" class="semLargura" /> Milk <br />
<input type="radio" name="group1" value="Butter" class="semLargura" /> Butter <br />
<input type="radio" name="group1" value="Cheese" class="semLargura" /> Cheese <br />

This permits 3 options

<input type="radio" name="group1" value="Milk" class="semLargura" /> Milk <br />
<input type="radio" name="group2" value="Butter" class="semLargura" /> Butter <br />
<input type="radio" name="group3" value="Cheese" class="semLargura" /> Cheese <br />

But in this case, how i can delete a select? For example i choose Milk, Butter and Cheese, but i want to remove the Butter after selected. Something like reset button.


回答1:


Why don't you use checkboxes instead of radiobuttons? They work exactly the way you want...



来源:https://stackoverflow.com/questions/6165388/multiple-selections-with-radio-buttons

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!