在我的网页中,我放了一些单选按钮.但这些按钮不能正常工作.我可以检查多个按钮.
码:
<label for="abc" style="margin-top:-20px;margin-left:40px">xyz</label> <input type="radio" id="abc" name="abc" > <label for="bcd" style="margin-top:-20px;margin-left:40px">abc</label> <input type="radio" id="bcd" name="bcd" > <label for="efg" style="margin-top:-20px;margin-left:40px">ccc</label> <input type="radio" id="efg" name="efg" >
我只想检查一个按钮.请任何人帮我
解决方法
因为name属性的值不同,所以它们应该有一个通用的名称值,就像你分组项目一样
<input type="radio" name="group1" /> <input type="radio" name="group1" /> <input type="radio" name="group1" /> <!-- You can select any one from each group --> <input type="radio" name="group2" /> <input type="radio" name="group2" /> <input type="radio" name="group2" />