HTML 是一種用于創建網頁的語言,其中包括單選按鈕。單選按鈕是一種讓用戶在給定的幾個選項中選擇唯一選項的控件,這在表單和調查中非常有用。下面演示如何設置單選按鈕。
<form> <input type="radio" name="fruit" value="apple">蘋果 <input type="radio" name="fruit" value="banana">香蕉 <input type="radio" name="fruit" value="orange">橙子 </form>
在以上代碼中,我們使用了 input 元素的 type="radio" 屬性來創建單選按鈕。其中 name 屬性是必需的,它允許同一表單中的多個單選按鈕相互配對。value 屬性用于標識所選中的單選按鈕,后續處理時可以使用它來獲取選中的值。
此外,您還可以使用 label 元素為單選按鈕添加標簽,使其更易于使用。以下示例演示如何為單選按鈕添加標簽:
<form> <label><input type="radio" name="fruit" value="apple">蘋果</label> <label><input type="radio" name="fruit" value="banana">香蕉</label> <label><input type="radio" name="fruit" value="orange">橙子</label> </form>
在以上代碼中,我們使用 label 元素將 input 元素包裝起來,并添加文本標簽。這樣,當用戶單擊標簽時,選中的單選按鈕也會被選中。
以上是關于 HTML 如何設置單選按鈕的介紹。