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


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


item()方法用于返回指定索引处的节点。节点按照它们在源代码中出现的顺序进行排序。节点列表的索引以0开头。

用法:

nodelist.item( index )

或者


nodelist[ index ] 

参数:此方法接受单个参数索引,该参数用于保存需要返回的节点的索引。它是必填参数,索引从0开始。

返回值:此方法返回指定索引处的节点。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM item() Method 
    </title> 
  
    <!-- script to change node value -->
    <script> 
        function changeElement() { 
            var gfg = document.getElementById("geeks"); 
  
            gfg.getElementsByTagName("P")[1].innerHTML =  
                             "Welcome to GeeksforGeeks!"; 
        } 
    </script> 
</head> 
  
<body> 
    <center> 
        <div id="geeks"> 
            <h1 style="color:green;">GeeksforGeeks</h1> 
            <p>A computer science portal</p> 
            <p>DOM item() Method</p> 
        </div> 
  
        <button onclick="changeElement()"> 
            Click Here! 
        </button> 
    </center> 
</body> 
  
</html>  

输出:
之前单击按钮:

单击按钮后:

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

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


相关用法


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