投聚财经
您的当前位置:首页在html怎样使用radio

在html怎样使用radio

来源:投聚财经
 很多初学者很疑惑,在HTML里有radio这个标签,到底怎么使用,使用radio的效果是什么样的?今天教大家怎样在html怎样使用radio。

1、html代码片段:

<form action="" method="get"> 
您最喜欢水果?<br /><br /> 
<label><input name="Fruit" type="radio" value="" />苹果 </label> 
<label><input name="Fruit" type="radio" value="" />桃子 </label> 
<label><input name="Fruit" type="radio" value="" />香蕉 </label> 
<label><input name="Fruit" type="radio" value="" />梨 </label> 
<label><input name="Fruit" type="radio" value="" />其它 </label> 
</form>

2、案例截图

显示全文