HTML中的selected屬性用於指定頁麵加載時默認應選擇的選項。這是一個布爾屬性。默認情況下,將顯示具有所選屬性的選項。
用法:
<option selected>value</option>
注意:此屬性隻能在<option>元素上使用。
例:下麵的HTML程序說明所選的屬性
<!DOCTYPE html>
<html>
<head>
<title>HTML selected Attribute</title>
</head>
<body style = "text-align:center;">
<h1 style = "color:green;">GeeksforGeeks</h1>
<h2>HTML selected Attribute</h2>
<!-- List of Options -->
<select>
<option value="merge">Merge Sort</option>
<option value="bubble">Bubble Sort</option>
<option value="insertion">Insertion Sort</option>
<!-- Option element with seletcted attribute -->
<option value="quick" selected>Quick Sort</option>
</select>
</body>
</html>
輸出:
支持的瀏覽器:所選屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML <option> selected屬性用法及代碼示例
- HTML Option selected用法及代碼示例
- jQuery :selected用法及代碼示例
- AngularJS ng-selected用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | selected Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。