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


HTML DOM documentElement用法及代码示例


DOM documentElement属性用于将documentElement作为元素对象返回。它是只读属性。它返回一个<HTML>元素。

用法:

document.documentElement 

返回值:它返回文档或元素对象的documentElement。


下面的程序演示了HTML中的documentElement属性:

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            DOM documentElement Property 
        </title> 
          
        <script> 
            function Geeks() { 
                var x = document.documentElement.nodeName; 
                document.getElementById("sudo").innerHTML = x; 
            } 
        </script> 
    </head> 
      
    <body> 
        <center> 
            <h1>GeeksforGeeks</h1> 
            <h2>DOM documentElement Property</h2> 
              
            <button onclick = "Geeks()"> 
                Submit 
            </button> 
              
            <p id = "sudo"></p> 
        </center> 
    </body> 
</html>                    

输出:
之前单击按钮:

单击按钮后:

支持的浏览器:DOM documentElement属性支持的浏览器如下:

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


相关用法


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