首页  >  文章  >  web前端  >  以下是一些符合您文章内容的英文问答类问题标题: 更简洁的标题: * What\'s the Difference Between HTMLCollections, NodeLists, and Arrays of Objects in the DOM? * DOM Collections: HTMLCollections, NodeLists, and Arrays - What\'s t

以下是一些符合您文章内容的英文问答类问题标题: 更简洁的标题: * What\'s the Difference Between HTMLCollections, NodeLists, and Arrays of Objects in the DOM? * DOM Collections: HTMLCollections, NodeLists, and Arrays - What\'s t

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-10-31 21:53:02259浏览

以下是一些符合您文章内容的英文问答类问题标题:

更简洁的标题:

*  What's the Difference Between HTMLCollections, NodeLists, and Arrays of Objects in the DOM?
*  DOM Collections: HTMLCollections, NodeLists, and Arrays - What's the Difference? 
*  HTMLCollections, NodeLists, and DOM

理解 DOM 中 HTMLCollections、NodeList 和对象数组之间的差异

使用 DOM 时,三种关键类型的集合发挥作用:HTMLCollections、节点列表和对象数组。这些集合中的每一个都有特定的用途,并具有其独特的特征。

HTMLCollections 与 NodeLists

HTMLCollections 表示与特定标签名称匹配的 HTML 元素的集合。它们由 Document 对象的 getElementsByTagName() 方法返回。 HTMLCollections 是实时,这意味着它们会自动反映对 DOM 所做的任何更改。它们还提供通过索引对各个元素的直接访问。另一方面,

NodeLists 是任何类型 Node 的集合(包括 HTML 元素、文本节点和注释)。它们由各种 DOM 方法返回,例如 querySelectorAll() 和 childNodes()。 NodeList 是静态,这意味着除非显式更新,否则它们不会反映 DOM 中的更改。

jQuery 对象与 HTMLCollections 和 NodeLists

jQuery 对象与 HTMLCollections 不直接相关或节点列表。 jQuery 对象是封装 DOM 选择的 JavaScript 对象。它们提供了一个方便的界面,用于操作 DOM 元素并使用 jQuery 丰富的 API 增强其功能。

jQuery 选择可以包括元素、文本节点或任何其他类型的 Node。与 NodeList 一样,jQuery 选择是静态的。但是,可以使用 jQuery 的 $(...).live() 方法将它们转换为实时 HTMLCollections。

JavaScript 数组和集合

除了 HTMLCollections 和 NodeLists,您还可以创建JavaScript 中的对象数组。例如,您可以将 DOM 元素存储在数组中,如下所示:

<code class="javascript">const elements = [document.getElementById("myElement1"), document.getElementById("myElement2")];</code>

JavaScript 中的数组是动态的,不会反映对 DOM 所做的更改。它们也不提供对 HTMLCollections 或 jQuery 对象等特定方法的访问。

示例和演示

以下脚本演示了这些集合类型之间的主要区别:

<code class="javascript">$(function(){
    console.log('[123,&quot;abc&quot;,321,&quot;cba&quot;]=',[123,&quot;abc&quot;,321,&quot;cba&quot;]);
    console.log('{123:123,abc:&quot;abc&quot;,321:321,cba:&quot;cba&quot;}=',{123:123,abc:&quot;abc&quot;,321:321,cba:&quot;cba&quot;});
    console.log('Node=',Node);
    console.log('document.links=',document.links);
    console.log('document.getElementById(&quot;myTable&quot;)=',document.getElementById(&quot;myTable&quot;));
    console.log('document.getElementsByClassName(&quot;myRow&quot;)=',document.getElementsByClassName(&quot;myRow&quot;))
    console.log('document.getElementsByTagName(&quot;td&quot;)=',document.getElementsByTagName(&quot;td&quot;));
    console.log('$(&quot;#myTable&quot;)=',$(&quot;#myTable&quot;));
    console.log('$(&quot;td&quot;)=',$(&quot;td&quot;));
});</code>

此脚本记录以下输出:

[123,"abc",321,"cba"]=[123, "abc", 321, "cba"]
{123:123,abc:"abc",321:321,cba:"cba"}=Object { 123=123, abc="abc", 321=321, more...}
Node= undefined
document.links= HTMLCollection[a #, a #]
document.getElementById("myTable")= <table>
document.getElementsByClassName("myRow")= HTMLCollection[tr.myRow, tr.myRow]
document.getElementsByTagName("td")= HTMLCollection[td, td, td, td]
jQuery("#myTable")= [table#myTable]
jQuery("td")= [td, td, td, td]

以上是以下是一些符合您文章内容的英文问答类问题标题: 更简洁的标题: * What\'s the Difference Between HTMLCollections, NodeLists, and Arrays of Objects in the DOM? * DOM Collections: HTMLCollections, NodeLists, and Arrays - What\'s t的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn