html選項按鈕預設選中怎麼做?input標籤的選項按鈕用法執行個體

來源:互聯網
上載者:User
本篇文章主要的向大家介紹了關於html input標籤的選項按鈕的使用方法,還有關於HTML input標籤的單選預設按鈕的做法。接下來我們一起來看看這篇文章吧

首先我們介紹的是在html input標籤中的選項按鈕的做法:

<input> 標籤用於搜集使用者資訊。根據不同的type屬性值,輸入欄位擁有很多種形式。輸入欄位可以是文字欄位、複選框、掩碼後的文本控制項、選項按鈕、按鈕等等。

話不多說,上代碼執行個體:

<form action="form_action.asp" method="get"><input type="radio" name="radio" value="1">單選1<input type="radio" name="radio" value="2">單選2<input type="radio" name="radio" value="3">單選3<input type="radio" name="radio" value="4">單選4</form>

這個的效果很容易看到,我們還是先看看瀏覽器中的顯示效果吧:

這個效果一眼就能看到,很簡單的一個代碼

還有種是很多網站上都是經常見到的,比如:單選性別,這個基本上都是用這種單選框去製作的。代碼如下:

HTML中的選項按鈕實現男女性別選擇,不讓男女同是都能都能選擇,實現方法:在按鈕的屬性裡寫一個name屬性,並且把name的值設定成相同的

<input id="man" type="radio" checked="checked" name="1" />男<input id="woman" type="radio"  name="1"/>女

這個就不給圖了,比上面那個還簡單,就兩個單選框,我們經常遇到的這個。

現在來說說HTML單選框按鈕怎麼預設選中:

首先我們先把第一個執行個體拿出來繼續說,我們只需要在其中加一個屬性,如下:

<form action="form_action.asp" method="get"><input type="radio" name="radio" value="1">單選1<input type="radio" name="radio" value="2" checked>單選2<input type="radio" name="radio" value="3">單選3<input type="radio" name="radio" value="4">單選4</form>

效果依舊很明顯,看:

這上面我沒做任何的點擊,自己出現在那上面的,重新整理過後還能看到在單選2上面。

我們就可以看到,這樣就把單選框給預設選中了,大家可以自己試試,多敲敲代碼。

好了,以上就是這篇關於html input標籤做選項按鈕的文章了,有問題的可以在下方提問。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.