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


HTML <optgroup> label屬性用法及代碼示例


HTML optgroup標簽屬性用於為<optgroup>元素指定標簽。

用法:

<optgroup label="text"> 

屬性值:它包含值,即指定optgroup元素描述的文本。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML 
        <optgroup> 
            label Attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green;"> 
      GeeksforGeeks 
  </h1> 
    <h2>HTML optgroup label Attribute</h2> 
  
    <select> 
        <!--A label optgroup-->
        <optgroup label="Sorting Algorithms"> 
            <option value="merge"> 
                Merge sort 
            </option> 
            <option value="quick"> 
                Quick sort 
            </option> 
        </optgroup> 
    </select> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML optgroup標簽“屬性”支持的瀏覽器:

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


相關用法


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