radio 預設選中

admin發表於2018-05-24

從標題看,此問題夠簡單,事實也是如此,在群裡還是看到有初學者來詢問此問題。

關於單選按鈕的更多內容可以參閱HTML input radio 單選按鈕一章節。

下面演示一下多個單選按鈕,實現其中一個預設選中。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<input type="radio" name="antzone"/>
<input type="radio" name="antzone"/>
<input type="radio" name="antzone" checked/>
<input type="radio" name="antzone"/>
<input type="radio" name="antzone"/>
</body>
</html>

只要給要預設選中的radio標籤上新增checked即可實現。

不要給checked屬性賦值true或者"checked",具體參閱HTML 布林屬性值一章節。

本文再強調一點,name屬性值相同的單選按鈕被視作"一組"。

一組單選按鈕,同時只能有一個被選中,這一單要謹記。

不少初學者會疑問,為什麼單選按鈕可以同時多個被選中,同時被選中的按鈕不屬於同一組。

相關文章