一、單選按鈕控件語法 - TOP<input name="Fruit" type="radio" value="" /> 使用html input標簽,name為自定義,type類型為“radio”的表單, 二、radio單選按鈕語法案例 - TOP1、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、案例截圖 |
|
來自: x小登 > 《網(wǎng)頁》