ES6 Arrow Function & this bug
ES6 Arrow Function & this bug
let accHeadings = document.querySelectorAll(`.accordionItemHeading`); // NodeList(3)
// let accHeadings = [...document.querySelectorAll(`.accordionItemHeading`)];
for (let i = 0; i < accHeadings.length; i++) {
accHeadings[i].addEventListener("click", function(e) {
console.log(`this`, this);
console.log(`e.target`, e.target);
});
}
for (let i = 0; i < accHeadings.length; i++) {
// ES6 Arrow Function & this bug
accHeadings[i].addEventListener("click", () => {
console.log(`this`, this);
}, false);
}
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="xgqfrms">
<meta name="generator" content="VS code">
<title>ES6 Arrow Function & this bug</title>
</head>
<body>
<section>
<h1>ES6 Arrow Function & this bug</h1>
</section>
<section>
<h2 class="accordionItemHeading">About accordions</h2>
<h2 class="accordionItemHeading">Accordion items</h2>
<h2 class="accordionItemHeading">How to use a JavaScript accordion</h2>
</section>
<section>
<button class="btn">a</button>
<button class="btn">b</button>
<button class="btn">c</button>
</section>
<!-- js -->
<script>
let btns = [...document.querySelectorAll(`.btn`)];
btns.forEach((acc) => {
acc.addEventListener("click", function(e) {
console.log(`this`, this);
console.log(`e.target`, e.target);
});
});
let accHeadings = [...document.querySelectorAll(`.accordionItemHeading`)];
// for (let i = 0; i < accHeadings.length; i++) {
// accHeadings[i].addEventListener("click", function(e) {
// console.log(`this`, this);
// console.log(`e.target`, e.target);
// });
// }
for (let i = 0; i < accHeadings.length; i++) {
// ES6 Arrow Function & this bug
accHeadings[i].addEventListener("click", (e) => {
console.log(`this`, this);
console.log(`e.target`, e.target);
});
}
</script>
</body>
</html>
ES6 Arrow Function & this bug的更多相关文章
- vue & lifecycle methods & this bug & ES6 Arrow function & this bind bug
vue & lifecycle methods & this bug ES6 Arrow function & this bind bug bad fetchTableData ...
- ES6 Arrow Function All In One
ES6 Arrow Function All In One this const log = console.log; const arrow_func = (args) => log(`arg ...
- ES6 arrow function vs ES5 function
ES6 arrow function vs ES5 function ES6 arrow function 与 ES5 function 区别 this refs xgqfrms 2012-2020 ...
- ES6 Arrow Function return Object
ES6 Arrow Function return Object https://github.com/lydiahallie/javascript-questions/issues/220#issu ...
- ES6 arrow function
语法: () => { … } // 零个参数用 () 表示: x => { … } // 一个参数可以省略 (): (x, y) => { … } // 多参数不能省略 (): 当 ...
- [ES6] 06. Arrow Function =>
ES6 arrow function is somehow like CoffeeScirpt. CoffeeScript: //function call coffee = -> coffee ...
- [ES6系列-02]Arrow Function:Whats this?(箭头函数及它的this及其它)
[原创] 码路工人 大家好,这里是码路工人有力量,我是码路工人,你们是力量. 如果没用过CSharp的lambda 表达式,也没有了解过ES6,那第一眼看到这样代码什么感觉? /* eg.0 * fu ...
- vue watch & arrow function bug
vue watch & arrow function bug watch: { GeoJSON: function(newValue, oldValue) { log(`\n\n\nGeoJS ...
- ES6 new syntax of Arrow Function
Arrow Function.md Arrow Functions The basic syntax of an arrow function is as follows var fn = data ...
随机推荐
- SVN提交文件冲突怎么办?
SVN文件遇到冲突怎么解决: 1. 文件出现这个图标提示后,你先把这个文件备份,备份到其他目录. 2. 把SVN目录下的这个文件还原为服务器上的最新版本或者直接删除重新更新到最新版本. 3. 把你备份 ...
- python中中括号中的负数
>>> a="a,b,c,d,e">>> a.split(",")[0:2]['a', 'b']>>> a ...
- LR中订单流程脚本2
Action(){ //1.设置服务器的IP地址 //lr_save_string("192.168.1.12:8080", "ip"); lr_save_st ...
- codevs 1145 Hanoi双塔问题 2007年NOIP全国联赛普及组
时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 题目描述 Description 给定A.B.C三根足够长的细柱,在A柱上放有2n个中间有孔的圆盘,共有n个不同的 ...
- 查看mysql已有用户并删除
查看: SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user; 删除: drop us ...
- Python相关机器学习
Python机器学习库 Python的机器学习库汇总与梳理 机器学习之开源库大总结
- Java数据结构和算法(五)--希尔排序和快速排序
在前面复习了三个简单排序Java数据结构和算法(三)--三大排序--冒泡.选择.插入排序,属于算法的基础,但是效率是偏低的,所以现在 学习高级排序 插入排序存在的问题: 插入排序在逻辑把数据分为两部分 ...
- webpack 使用总结
参考:http://www.ferecord.com/webpack-summary.html#base64 写的比较详细了
- monkeyrunner之控件ID不存在或重复(转载lynnLi)
我们在用monkeyrunner进行Android自动化时,通过获取坐标点或控件ID进行一系列操作.由于使用坐标点时,屏幕分辨率一旦更改,则代码中用到坐标的地方都要修改,这样导致代码的复用率较低.因此 ...
- s:iterator的多层迭代
struts2的s:iterator 可以遍历 数据栈里面的任何数组,集合等等 以下几个简单的demo:s:iterator 标签有3个属性: value:被迭代的集合 id :指定集 ...