Js选择器

JS选择器常用的有getElementById()getElementsByClassName()getElementsByName()getElementsByTagName()querySelector()querySelectorAll()

getElementById

通过id来定位,返回对指定id的第一个对象的引用,返回类型为HTMLDivElement

<div id="t1">T1</div>

<script type="text/javascript">
var t1 = document.getElementById("t1");
console.log(t1); // <div id="t1">D1</div>
console.log(Object.prototype.toString.call(t1)); // [object HTMLDivElement]
</script>

getElementsByClassName

通过class属性来定位,返回文档中指定class属性值的元素的引用,返回类型为HTMLCollection

<div class="t2">D2</div>
<div class="t2">D3</div> <script type="text/javascript">
var t2List = document.getElementsByClassName("t2");
console.log(t2List); // HTMLCollection(2) [div.t2, div.t2]
// 使用for循环遍历
for(let i=0,n=t2List.length;i<n;++i) console.log(t2List[i]);
// HTMLCollection的prototype中没有forEach方法,遍历需要使用Array的prototype中forEach通过call绑定对象实例并传参
Array.prototype.forEach.call(t2List,v => console.log(v) );
// HTMLCollection的prototype中没有map方法,也需要使用Array的prototype中forEach通过call绑定对象实例并传参
Array.prototype.map.call(t2List,v => console.log(v) );
</script>

getElementsByName

通过name属性来定位,返回文档中指定name属性值的元素的引用,返回类型为NodeList

<div name="t3">D4</div>
<div name="t3">D5</div> <script type="text/javascript">
var t3List = document.getElementsByName("t3");
console.log(t3List); // NodeList(2) [div, div]
// 可直接使用forEach进行遍历
t3List.forEach( v => console.log(v) );
// NodeList的prototype中没有map方法,使用map的场景也需要借助Array的prototype中map通过call绑定对象实例并传参
Array.prototype.map.call(t3List,v => console.log(v) );
</script>

getElementsByTagName

通过标签的名字来定位,返回文档中指定标签的元素的引用,返回类型为HTMLCollection

<p class="t4">P6</p>
<p class="t4">P7</p> <script type="text/javascript">
var t4List = document.getElementsByTagName("p");
console.log(t4List); // HTMLCollection(2) [p, p]
Array.prototype.forEach.call(t4List, function(v){console.log(v);});
Array.prototype.map.call(t4List,function(v){console.log(v);} );
</script>

querySelector

通过CSS选择器来定位,返回文档中匹配指定CSS选择器的第一个元素的引用,返回类型为HTMLDivElement

<div>
<div class="t5">D8</div>
</div> <script type="text/javascript">
var t5 = document.querySelector("div .t5");
console.log(t5); // <div class="t5">D8</div>
console.log(Object.prototype.toString.call(t5)); // [object HTMLDivElement]
</script>

querySelectorAll

通过CSS选择器来定位,返回文档中匹配指定CSS选择器的所有元素的引用,返回类型为NodeList

<div>
<div id="t6">D9</div>
<div>D10</div>
<div>D11</div>
</div> <script type="text/javascript">
var t6List = document.querySelectorAll("#t6 ~ div");
console.log(t6List); // NodeList(2)[div, div]
t6List.forEach(function(v){console.log(v);});
Array.prototype.map.call(t6List,function(v){console.log(v);} );
</script>

代码示例

<!DOCTYPE html>
<html>
<head>
<title>Js选择器</title>
<meta charset="utf-8">
</head>
<body> <div id="t1">D1</div> <div class="t2">D2</div>
<div class="t2">D3</div> <div name="t3">D4</div>
<div name="t3">D5</div> <p class="t4">P6</p>
<p class="t4">P7</p> <div>
<div class="t5">D8</div>
</div> <div>
<div id="t6">D9</div>
<div>D10</div>
<div>D11</div>
</div> </body>
<script type="text/javascript">
var t1 = document.getElementById("t1");
console.log(t1); // <div id="t1">D1</div>
console.log(Object.prototype.toString.call(t1)); // [object HTMLDivElement]
console.log(""); var t2List = document.getElementsByClassName("t2");
console.log(t2List); // HTMLCollection(2) [div.t2, div.t2]
// 使用for循环遍历
for(let i=0,n=t2List.length;i<n;++i) console.log(t2List[i]);
// HTMLCollection的prototype中没有forEach方法,遍历需要使用Array的prototype中forEach通过call绑定对象实例并传参
Array.prototype.forEach.call(t2List,v => console.log(v) );
// HTMLCollection的prototype中没有map方法,也需要使用Array的prototype中forEach通过call绑定对象实例并传参
Array.prototype.map.call(t2List,v => console.log(v) );
console.log(""); var t3List = document.getElementsByName("t3");
console.log(t3List); // NodeList(2) [div, div]
// 可直接使用forEach进行遍历
t3List.forEach( v => console.log(v) );
// NodeList的prototype中没有map方法,使用map的场景也需要借助Array的prototype中map通过call绑定对象实例并传参
Array.prototype.map.call(t3List,v => console.log(v) );
console.log(""); var t4List = document.getElementsByTagName("p");
console.log(t4List); // HTMLCollection(2) [p, p]
Array.prototype.forEach.call(t4List, function(v){console.log(v);});
Array.prototype.map.call(t4List,function(v){console.log(v);} );
console.log(""); var t5 = document.querySelector("div > .t5");
console.log(t5); // <div class="t5">D8</div>
console.log(Object.prototype.toString.call(t5)); // [object HTMLDivElement]
console.log(""); var t6List = document.querySelectorAll("#t6 ~ div");
console.log(t6List); // NodeList(2) [div, div]
t6List.forEach(function(v){console.log(v);});
Array.prototype.map.call(t6List,function(v){console.log(v);} );
console.log("");
</script>
</html>

每日一题

https://github.com/WindrunnerMax/EveryDay

参考

数组的遍历 https://github.com/WindrunnerMax/EveryDay/blob/master/JavaScript/Js%E9%81%8D%E5%8E%86%E6%95%B0%E7%BB%84%E6%80%BB%E7%BB%93.md
ES6箭头函数 https://github.com/WindrunnerMax/EveryDay/blob/master/JavaScript/ES6%E6%96%B0%E7%89%B9%E6%80%A7.md
原型与原型链 https://github.com/WindrunnerMax/EveryDay/blob/master/JavaScript/%E5%8E%9F%E5%9E%8B%E4%B8%8E%E5%8E%9F%E5%9E%8B%E9%93%BE.md
CSS选择器 https://github.com/WindrunnerMax/EveryDay/blob/master/CSS/CSS%E9%80%89%E6%8B%A9%E5%99%A8.md

JavaScript选择器的更多相关文章

  1. 深入理解javascript选择器API系列第三篇——h5新增的3种selector方法

    × 目录 [1]方法 [2]非实时 [3]缺陷 前面的话 尽管DOM作为API已经非常完善了,但是为了实现更多的功能,DOM仍然进行了扩展,其中一个重要的扩展就是对选择器API的扩展.人们对jQuer ...

  2. jQuery 选择器和JavaScript 选择器的技巧与异常原因

    jquery的选择器借鉴了css选择器,核心依然依靠JavaScript的getElementById()和getElementsByTagName()方法,但是他封装了2个方法,让jquery选择器 ...

  3. 深入理解javascript选择器API系列第三篇——HTML5新增的3种selector方法

    前面的话 尽管DOM作为API已经非常完善了,但是为了实现更多的功能,DOM仍然进行了扩展,其中一个重要的扩展就是对选择器API的扩展.人们对jQuery的称赞,很多是由于jQuery方便的元素选择器 ...

  4. 使用HTML5的JavaScript选择器操作页面中的元素

    <!doctype html><html lang="en"> <head>     <meta charset="UTF-8& ...

  5. HTML5的JavaScript选择器介绍

    在HTML5出现之前使用JavaScript查找DOM元素,有以下三种原生的方法: getElementById:根据指定元素的id属性返回元素 getElementsByName:返回所有指定nam ...

  6. JavaScript选择器和节点操作

    感谢:链接(视频讲解很清晰) 下文中讲解用到Chrome中的console调试台,如果不懂最好先看一下:链接 JavaScript选择器 作用:选取html中的标签等内容,最重要的还是为节点的操作(增 ...

  7. 深入理解javascript选择器API系列第二篇——getElementsByClassName

    × 目录 [1]使用 [2]classList [3]扩展 前面的话 既然有getElementById()和getElementsByTagName()方法,为什么没有getElementsByCl ...

  8. 深入理解javascript选择器API系列第一篇——4种元素选择器

    × 目录 [1]id属性 [2]标签名 [3]name属性[4]all 前面的话 说到最常见的DOM应用,恐怕就要数取得特定的某个或某组元素的引用了.DOM定义了许多方式来选取元素,包括getElem ...

  9. javascript选择器querySelector和querySelectorAll的使用和区别

    querySelector 和 querySelectorAll 方法是 W3C Selectors API规范中定义的.他们的作用是根据 CSS 选择器规范,便捷定位文档中指定元素. 目前几乎主流浏 ...

  10. 深入学习jQuery选择器系列第八篇——过滤选择器之伪子元素选择器

    × 目录 [1]通用形式 [2]反向形式 [3]首尾元素 [4]唯一元素 前面的话 本文是子元素选择器的续篇,主要介绍关于nth-of-type()选择器的内容.该部分内容并非没有出现在<锋利的 ...

随机推荐

  1. 有了Composition API后,有些场景或许你不需要pinia了

    前言 日常开发时有些业务场景功能很复杂,如果将所有代码都写在一个vue组件中,那个vue文件的代码量可能就几千行了,维护极其困难.这时我们就需要将其拆分为多个组件,拆完组件后就需要在不同组件间共享数据 ...

  2. ChatGPT-NextWeb部署和调试打造属于自己的GPT

    首先我关注这个项目有一段时间了,不得不说作者和他的社区真的很猛! 首先这个项目截至目前已经有了40.9K的Start了,Fork也已经有了38.1K了,这个数据真的超级牛批了. 那么我们来看一下这款号 ...

  3. ext4 磁盘扩容

    目录 ext4文件系统磁盘扩容 目标 途径 操作步骤 改变前的现状 操作和改变后的状态 ext4文件系统磁盘扩容 一个磁盘有多个分区,分别创建了物理卷.卷组.逻辑卷.通过虚拟机软件对虚拟机的磁盘/de ...

  4. [转帖]《Linux性能优化实战》笔记(十九)—— DNS 解析原理与故障案例分析

    一. 域名与 DNS 解析 域名主要是为了方便让人记住,而 IP 地址是机器间的通信的真正机制.以 time.geekbang.org 为例,最后面的 org 是顶级域名,中间的 geekbang 是 ...

  5. [转帖]HTTP状态码、请求方法、响应头信息

    https://www.cnblogs.com/pachongshangdexuebi/p/5279608.html HTTP状态码 当浏览者访问一个网页时,浏览者的浏览器会向网页所在服务器发出请求. ...

  6. [转帖]拯救关键业务上线:DBA 的惊魂24小时

    一个电话,打破深夜的宁静 9月20日晚上10点 刚完成外地一个重点项目为期2周的现场支持,从机场回家的路上,一阵急促的铃声惊醒了出租车上昏昏欲睡的我,多年的工作经验告诉我这么晚来电一定是出事了,接起电 ...

  7. [转帖]Linux—解压缩命令总结(tar/zip)

    https://www.jianshu.com/p/1ad5d852d13b 1 tar 1.2 tar介绍   tar命令是linux系统中对文件和目录解压缩命令.tar命令可以用于对后缀名为.ta ...

  8. [转帖]VMware ESXi 各版本号对照表

    本博文转自以下链接: VMware ESXi Release and Build Number History | virten.net vSphere ESXi 7.0 Name Patch Dat ...

  9. [转帖]聊聊我对 GraphQL 的一些认知

    https://www.modb.pro/db/139451 作者简介:haohongfan 是 Apache Dubbogo Committer,目前就职于京东,擅长高并发架构设计.公众号 HHFC ...

  10. [转帖]AHCI到NVMe,SSD的关键科技革命

      https://baijiahao.baidu.com/s?id=1718020841628703656&wfr=spider&for=pc HDD和早期SSD大部分使用SATA接 ...