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


HTML DOM body用法及代碼示例


HTML DOM屬性用於設置文檔<body>元素。它僅返回<body>標記中存在的內容。此屬性用於更改<body>元素內的當前內容,並使用新的指定內容進行設置。此屬性不返回<HTML>元素。

用法:

  • 此語法返回body屬性。
    document.body
  • 此語法用於設置body屬性。
    document.body = Content

屬性值:document.body屬性使用單個值Content,該值用於在body元素中添加新內容。


範例1:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM body property</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM body property</h2> 
        <button onclick="geeks()">Submit</button> 
        <p id = "gfg"></p> 
        <script> 
            function geeks() { 
                var x = document.body.innerHTML; 
                document.getElementById("gfg").innerHTML =  
                "Display the body content:<br>" + x; 
            } 
        </script> 
    </body> 
</html>                    

輸出:

範例2:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM body property</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM body property</h2> 
        <button onclick="geeks()">Submit</button> 
        <script> 
            function geeks() { 
                document.body.innerHTML = "<h1>"  
                + "GeeksforGeeks" 
                + "</h1>" + "<br>" + "<h2>"  
                + "New Content Added"  
                + "</h2>"; 
            } 
        </script> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:下麵列出了DOM body屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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