本文主要介紹了HTML5 HTMLCollection和NodeList的區(qū)別詳解,分享給大家,具體如下:
獲取
HTMLCollection 對象
getElementsByTagName() 方法返HTMLCollection對象。
HTMLCollection 對象類似包含 HTML 元素的一個數(shù)組。
注意:
- HTMLCollection 不是一個數(shù)組!
- HTMLCollection 看起來可能是一個數(shù)組,但其實不是。
- 你可以像數(shù)組一樣,使用索引來獲取元素。
- HTMLCollection 無法使用數(shù)組的方法: valueOf(), pop(), push(), 或 join()。
NodeList 對象
大部分瀏覽器的querySelectorAll()返回 NodeList 對象。
注意
- 節(jié)點列表不是一個數(shù)組!
- 節(jié)點列表看起來可能是一個數(shù)組,但其實不是。
- 你可以像數(shù)組一樣,使用索引來獲取元素。
- 節(jié)點列表無法使用數(shù)組的方法: valueOf(), pop(), push(), 或 join() 。
HTMLCollection 與 NodeList 的區(qū)別
- HTMLCollection是 HTML 元素的集合。(僅包含元素)
- NodeList 是一個文檔節(jié)點的集合。
- NodeList 與 HTMLCollection 有很多類似的地方。
- NodeList 與 HTMLCollection 都與數(shù)組對象有點類似,可以使用索引 (0, 1, 2, 3, 4, ...) 來獲取元素。
- NodeList 與 HTMLCollection 都有 length 屬性。
- HTMLCollection 元素可以通過 name,id 或索引來獲取。
- NodeList 只能通過索引來獲取。
- 只有 NodeList 對象有包含屬性節(jié)點和文本節(jié)點。
代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<P>1</P>
<P id="p2">2</P>
<P>3</P>
<P>4</P>
<P>5</P>
<script>
// getElementsByTagName() 方法返回 HTMLCollection 對象。
const myCollection = document.getElementsByTagName('p');
console.log(myCollection)
// 大部分瀏覽器的 querySelectorAll() 返回 NodeList 對象。
const myNodeList = document.querySelectorAll("p");
console.log(myNodeList)
console.log(myNodeList ===myCollection) //false
console.log(myCollection.p2) // <P id="p2">2</P>
console.log(myNodeList.p2) //undefine
</script>
</body>
</html>
到此這篇關(guān)于HTML5 HTMLCollection和NodeList的區(qū)別詳解的文章就介紹到這了,更多相關(guān)HTML5 HTMLCollection NodeList內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!