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


HTML DOM Footer用法及代碼示例


DOM頁腳對象用於表示HTML <footer>元素。可以使用getElementById()方法訪問頁腳元素。

用法:

document.getElementById("id"); 

其中‘id’是分配給頁腳標簽的ID。

示例1:在下麵的程序中,訪問頁腳元素,並更改頁腳元素內部的文本顏色。

<!DOCTYPE html>  
<html>  
<body>  
        <h1 style = "color:green;" >  
          GeeksForGeeks  
        </h1>  
  
        <h2>DOM footer Object</h2>  
        <button onclick="Geeks()">Click Here</button> 
        <br><br> 
        <footer id="s">This is a Footer content</footer>   
          
        <script> 
        function Geeks() { 
          var txt = document.getElementById("s"); 
          txt.style.color = "green"; 
        } 
        </script> 
</body>  
</html> 

輸出:
在點擊按鈕之前:
footer
單擊按鈕後:
footer



示例-2:可以使用document.createElement方法創建頁腳對象。

<!DOCTYPE html>  
<html>  
<body>  
        <h1 style = "color:green;" >  
          GeeksForGeeks  
        </h1>  
  
        <h2>DOM footer Object</h2>  
  
        <button onclick="Geeks()">Click Here!</button><br><br> 
  
        <p id="foot"></p> 
  
        <script> 
        function Geeks() { 
            var x = document.createElement("FOOTER"); 
            document.body.appendChild(x); 
          
            var y = document.createElement("P");  
            var t = document.createTextNode("This is a p  
                               element in a footer element."); 
            y.appendChild(t); 
          
            document.getElementById("foot").appendChild(y); 
        } 
        </script> 
</body>  
</html> 

輸出:
在點擊按鈕之前:
footer
單擊按鈕後:
footer

相關用法


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