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


HTML DOM getElementById()用法及代码示例


getElementById()方法返回具有给定ID的元素,该元素将传递给函数。此函数广泛用于网页设计中,以更改任何特定元素的值或获取特定元素。如果传递给函数的ID没有退出,则返回null。

用法:

document.getElementById( element_ID )

参数:该函数接受单个参数element_ID,该参数用于保存element的ID。


返回值:它返回给定ID的对象。如果不存在具有给定ID的元素,则返回null。

范例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM getElementById() Method 
        </title>  
          
        <script>  
          
        // Function to change the color of element 
        function geeks() { 
            var demo = document.getElementById("geeks"); 
            demo.style.color = "green"; 
        }  
        </script>  
    </head>  
      
    <body style = "text-align:center"> 
      
        <h1 id = "geeks">GeeksforGeeks</h1> 
          
        <h2>DOM getElementById() Method</h2> 
          
        <!-- Click on the button to change color -->
        <input type = "button" onclick = "geeks()"
            value = "Click here to change color" /> 
    </body>  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

范例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM getElementById() Method 
        </title>  
          
        <script> 
          
            // Function to change content of element 
            function geeks() { 
                var demo = document.getElementById("geeks"); 
                demo.innerHTML = "Welcome to GeeksforGeeks!" ; 
            }  
        </script>  
    </head>  
      
    <body style = "text-align:center"> 
          
        <h1>GeeksforGeeks</h1>  
        <h2>DOM getElementById() Method</h2>  
          
        <h3 id="geeks">Hello Geeks!</h3> 
          
        <!-- Click here to change content -->
        <input type = "button" onclick = "geeks()"
            value="Click here to change content" />  
    </body>  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM getElementById()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


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