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


HTML DOM Figure用法及代码示例


DOM图形对象用于表示HTML <figure>元素。图形元素由getElementById()访问。

用法:

document.getElementById("ID");

其中“id”是分配给“figure”标签的ID。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>figure tag</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM figure Object</h2> 
    
    <!-- assign id to figure tag --> 
    <figure id="GFG"> 
        
        <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/geeks-25.png" 
             alt="GeeksforGeeks" 
             width="304" 
             height="228"> 
        
        <figcaption>Geeks logo</figcaption> 
    </figure> 
    
    <button onclick="Geeks()">Submit</button> 
    <p id="sudo"></p> 
    
    <script> 
        function Geeks() { 
            
          <!-- accessing the figure object -->
            var g =  
            document.getElementById("GFG").id; 
            
            document.getElementById("sudo").innerHTML = g; 
        } 
    </script> 
</body> 
  
</html>               

输出:



在单击按钮之前:

单击按钮后:

示例-2:可以使用document.createElement方法创建图形对象。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>figure tag</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>DOM figure Object</h2> 
    
    <button onclick="Geeks()">Submit</button> 
  
    <script> 
        function Geeks() { 
            
            var g = document.createElement("FIGURE"); 
            g.setAttribute("id", "GFG"); 
            document.body.appendChild(g); 
  
            var f = document.createElement("IMG"); 
            f.setAttribute("src",  
"https://media.geeksforgeeks.org/wp-content/uploads/geeks-25.png"); 
            f.setAttribute("width", "304"); 
            f.setAttribute("width", "228"); 
            f.setAttribute("alt", "GeeksforGeeks"); 
  
            document.getElementById("GFG").appendChild(f); 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM图形对象支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari

相关用法


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