html – 单选按钮不能正常工作

前端之家收集整理的这篇文章主要介绍了html – 单选按钮不能正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的网页中,我放了一些单选按钮.但这些按钮不能正常工作.我可以检查多个按钮.

码:

<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" >

fiddle

我只想检查一个按钮.请任何人帮我

解决方法

因为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" />

Demo

原文链接:https://www.f2er.com/html/230165.html

猜你在找的HTML相关文章