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


HTML for屬性用法及代碼示例


HTML | for屬性在<label>和<output>元素中都使用。

對於標簽元素中的屬性:當標簽元素中存在屬性時,它用於指定標簽綁定到的表單元素的類型。

用法:

<label for="element_id">

示例1:此示例說明了在標簽元素中使用for屬性。

<!-- HTML code to illustrates label tag -->
<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML | for Attribute 
  </title> 
  
    <style> 
        body { 
            font-size:20px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2>HTML | for Attribute</h2> 
  
    <form> 
  
        <!-- Starts label tag from here -->
        <label for="student"> 
            Student 
        </label> 
        <input type="radio"
               name="Occupation" 
               id="student" 
               value="student"> 
        <br> 
  
        <label for="business"> 
            Business 
        </label> 
        <input type="radio"
               name="Occupation"
               id="business"
               value="business"> 
        <br> 
  
        <label for="other"> 
            Other 
        </label> 
        <!-- Ends label tags here -->
  
        <input type="radio"
               name="Occupation"
               id="other"
               value="other"> 
    </form> 
</body> 
  
</html>

輸出:



對於輸出元素中的屬性:當存在於輸出元素中時,它指定結果與計算之間的關係。

用法:

<output for="element_id">

示例-2:本示例說明在輸出元素中使用For屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML | For Attribute 
  </title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML | For Attribute</h2> 
    <form oninput="sumresult.value = parseInt(A.value)  
                + parseInt(B.value) + parseInt(C.value)"> 
        <input type="number"
               name="A"
               value="50" /> + 
        
        <input type="range" 
               name="B"
               value="0" /> + 
        
        <input type="number" 
               name="C" 
               value="50" /> 
        <br /> Submit Result:
        <output name="sumresult" 
                for="A B C"> 
      </output> 
        <br> 
        <input type="submit"> 
    </form> 
</body> 
  
</html>

輸出:

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

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

相關用法


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