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


HTML DOM Blockquote用法及代码示例


DOM Blockquote对象用于表示HTML <Blockquote>元素。 getElementById()可访问Blockquote元素。句法

document.getElementById("id");

其中“id”是分配给blockquote标签的ID。示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM blockquote object</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2> DOM <blockquote> Object</h2> 
    <blockquote ID="GFG" cite="www.geeksforgeeks.org"> 
      GeeksforGeeks:A computer science portal for geeks 
    </blockquote> 
    
    <button onclick="myGeeks()">Submit</button> 
  
    <p id="sudo"></p> 
  
    <script> 
        function myGeeks() { 
            var w = document.getElementById("GFG").cite; 
            document.getElementById("sudo").innerHTML = w; 
        } 
    </script> 
</body> 
  
</html>              

输出:
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM blockquote object</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2> DOM <blockquote> Object</h2> 
  
    <button onclick="myGeeks()">Submit</button> 
  
    <p id="sudo"></p> 
  
    <script> 
        function myGeeks() { 
            var g = document.createElement("BLOCKQUOTE"); 
            var f = document.createTextNode("GeeksforGeeks:"+ 
                "A computer science portal for geeks."); 
            
            g.setAttribute("cite", "www.geeksforgeeks.org"); 
            g.appendChild(f); 
            document.body.appendChild(g); 
        } 
    </script> 
</body> 
  
</html>   

输出:
在单击按钮之前:

单击按钮后:

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

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




相关用法


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