内容简介:在老项目中开始改用遇到这个问题主要是没有搞清楚转换为了:
在老项目中开始改用 laravel-mix
ES6
逐渐过渡。摸索中遇到在与 jQuery
一同使用时 箭头函数
中 $(this)
的含义发生了变化。
遇到这个问题主要是没有搞清楚 箭头函数 :
$('.js-bottom-btn').click(() => { let flag = $(this).date('flag'); ... });
转换为了:
$('.js-bottom-btn').click(function() { let flag = $(_this).date('flag'); ... });
_this
is undefined
根据 jQuery click 文档 可以修改为:
$('.js-bottom-btn').click(event => { let flag = $(event.currentTarget).date('flag'); ... });
类似的问题:
$('jquery-selector').each(() => { $(this).click(); })
需要改为:
$('jquery-selector').each((index, element) => { $(element).click(); })
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- CocoaPods使用问题总结
- TokuDB 使用问题汇总
- 使用SonarQube追踪代码问题
- kkfileView 使用问题年终答疑篇
- Flutter使用TabBar问题小结
- iOS开发 单例使用问题
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Learn Python 3 the Hard Way
Zed A. Shaw / Addison / 2017-7-7 / USD 30.74
You Will Learn Python 3! Zed Shaw has perfected the world’s best system for learning Python 3. Follow it and you will succeed—just like the millions of beginners Zed has taught to date! You bring t......一起来看看 《Learn Python 3 the Hard Way》 这本书的介绍吧!
JS 压缩/解压工具
在线压缩/解压 JS 代码
在线进制转换器
各进制数互转换器