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


HTML Fieldset type用法及代碼示例


HTML DOM中的DOM字段集類型屬性用於設置或返回字段集的表單元素類型。這是一個隻讀屬性,將始終返回“fieldset”。

用法:

fieldsetObject.type

以下示例程序旨在說明fieldset屬性的用法。


例:本示例返回類型Property。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      DOM fieldset type Property  
  </title> 
    <style> 
        h1, 
        h2, 
        .titl { 
            text-align:center; 
        } 
          
        fieldset { 
            width:50%; 
            margin-left:22%; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        button { 
            margin-left:35%; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2> 
      DOM fieldset type Property 
  </h2> 
  
    <form> 
  
        <fieldset id="GFG"> 
            <legend>JAVA:</legend> 
            Title:
            <input type="text"> 
            <br> Link:
            <input type="text"> 
            <br> User ID:
            <input type="text"> 
        </fieldset> 
  
    </form> 
    <br> 
  
    <button onclick="Geeks()"> 
      Submit 
  </button> 
    <p id="sudo" 
       style="font-size:25px; 
              text-align:center;"> 
  </p> 
    <script> 
        function Geeks() { 
            var g =  
                document.getElementById( 
                  "GFG").type; 
            
            document.getElementById( 
              "sudo").innerHTML = g; 
  
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM字段集類型“屬性”支持的瀏覽器如下:

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


相關用法


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