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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。