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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。