当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM THead用法及代码示例


HTML DOM THead 对象用于表示 HTML <thead> 元素。它有助于引用访问 HTML 文档中的 <thead> 元素。

访问一个 THead 对象:

我们可以使用 HTML getElementById() 方法轻松访问文档中的 <thead> 元素。



用法:

document.getElementById()

范例1:下面的 HTML 代码说明了如何更改 <thead> 元素的 bgcolor。

HTML


<!DOCTYPE html>
<html>
  
<head>
    <style>
        table,
        th,
        td {
            border:1px solid green;
        }
    </style>
</head>
  
<body>
    <center>
    <h1>
        GeeksforGeeks
    </h1>
    <p><b>HTML DOM THead Object </b></p>
    <table>
        <thead id="tableID" bgcolor="43e">
            <tr>
                <td>Username</td>
                <td>User_Id</td>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Shashank</td>
                <td>@shashankla</td>
            </tr>
            <tr>
                <td>GeeksforGeeks</td>
                <td>@geeks</td>
            </tr>
        </tbody>
    </table>
    <p>
        Click on the button to change the 
        background color of thead element. 
    </p>
    <button onclick="btnclick()"> 
        Click here 
    </button>
    <p id="paraID"></p>
    </center>
    <script>
        function btnclick() {
            var thead = document.getElementById("tableID");
            thead.style.backgroundColor = "red";
        }
    </script>
</body>
  
</html>

输出:

创建一个 THead 对象:我们可以使用 document.createElement() 方法创建一个 THead 对象。

用法:

document.createElement()

范例2:

HTML


<!DOCTYPE html>
<html>
      
<head>
    <style>
        table, th, td {
            border:1px solid green;
        }
    </style>
</head>
  
<body>
   <center>
    <h1>
        GeeksforGeeks
    </h1>
          
    <h2>HTML DOM THead object</h2>
     
     <table id ="tableID">
          
     </table>
     <p>
        Click button to create thead element.
     </p>
  
  
    <button onclick="btnclick()">
        Click here
    </button> 
  
    <script>
        function btnclick() {
           /* Create thead element */
           var x = document.createElement("THEAD"); 
          /* Create tr element */
          var y = document.createElement("TR");
          /* Create td element */
          var z = document.createElement("TD");
          z.innerHTML = "Username"; 
          /* Create td element */
          var w = document.createElement("TD");
          w.innerHTML = "Password";
          y.appendChild(z);
          y.appendChild(w);
          x.appendChild(y);
          document.getElementById("tableID").appendChild(x);
        }        
    </script>
</body>
</html>                

输出:

支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 迷你 Opera
  • Firefox
  • 苹果Safari



相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML DOM THead Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。