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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。