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


HTML DOM Article用法及代碼示例


DOM文章對象用於表示HTML <article>元素。可以使用getElementById()方法訪問article元素。

用法:

document.getElementById("id"); 

其中‘id’是分配給商品標簽的ID。

示例1:在下麵的程序中,單擊按鈕即可訪問article對象,並且元素內文本的顏色也會更改。

<!DOCTYPE html>  
<html>  
<body>  
    <center>  
        <h1 style = "color:green;" >  
          GeeksForGeeks  
        </h1>  
  
        <h2>DOM article Object</h2>  
  
        <button onclick="Geeks()">Click Here</button> 
        <br><br> 
  
        <article id="s">A computer science portal for geeks.</article> 
          
        <script> 
            function Geeks() { 
                var txt = document.getElementById("s"); 
                txt.style.color = "green"; 
            } 
        </script> 
</body>  
</html> 

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



示例-2:可以使用document.createElement方法創建Article Object。

<!DOCTYPE html>  
<html>  
<body>  
<center> 
        <h1 style = "color:green;" >  
          GeeksForGeeks  
        </h1>  
  
        <h2>DOM article Object</h2>  
  
        <button onclick="Geeks()">Click Here!</button><br><br> 
  
        <div><span id = "p"></span></div> 
  
        <script> 
        function Geeks() { 
            var txt = document.createElement("ARTICLE"); 
            var t = document.createTextNode("A computer  
                              science portal for geeks."); 
  
            txt.appendChild(t); 
  
            document.getElementById("p").appendChild(txt); 
        } 
        </script> 
</body>  
</html> 

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

相關用法


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