設定radio單選按鈕預設選中

admin發表於2018-05-24

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

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

程式碼例項如下:

[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 布林屬性值一章節。

相關文章