當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <option> selected屬性用法及代碼示例


HTML <option> selected屬性用於指定頁麵加載時默認應選擇的選項。這是一個布爾屬性。默認情況下,將顯示具有所選屬性的選項。

用法:

<option selected> 

示例1:本示例說明了在選項元素中選擇屬性的用法。


<!-- HTML program to illustrate selected Attribute -->
  
<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML selected Attribute</title> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <h2>HTML Option 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>

輸出:

示例2:

<!-- HTML program to illustrate selected Attribute -->
  
<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML selected Attribute</title> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <h2>HTML Option selected Attribute</h2> 
  
    <!-- List of Options -->
    <select> 
        <option value="c">C</option> 
        <option value="cpp">C++</option> 
<!-- Option element with seletcted attribute -->
        <option value="python" selected>Python</option> 
        <option value="java" >JAVA</option> 
    </select> 
</body> 
  
</html>                    

輸出:

支持的瀏覽器:下麵列出了HTML Option Selected Attribute支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <option> selected Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。