当前位置:网站首页>this的指向问题
this的指向问题
2022-07-30 05:46:00 【樂途途】
函数内this的指向问题
函数内的this指向:this的指向是当前我们调用函数的时候确定的,调用的方式不同决定了this的指向不同,一般指向我们的调用者
不同调用方式下的this指向
- 普通函数调用
// 1. 普通函数 this 指向window
function fn() {
console.log('普通函数的this' + this);
}
window.fn(); //window可省略
- 对象方法调用
// 2. 对象的方法 this指向的是对象fn
var fn = {
sayHi: function() {
console.log('对象方法的this:' + this);
}
}
fn.sayHi();
- 构造函数调用
// 3. 构造函数 this 指向 ldh 这个实例对象 原型对象里面的this 指向的也是 ldh这个实例对象
function Star() {
};
Star.prototype.sing = function() {
}
var ldh = new Star();
- 事件绑定方法
// 4. 绑定事件函数 this 指向的是函数的调用者 btn这个按钮对象
var btn = document.querySelector('button');
btn.onclick = function () {
console.log('绑定时间函数的this:' + this);
};
// 5. 定时器函数 this 指向的也是window
window.setTimeout(function () {
console.log('定时器的this:' + this);
}, 1000);
- 定时器函数
// 5. 定时器函数 this 指向的也是window
window.setTimeout(function () {
console.log('定时器的this:' + this);
}, 1000);
- 立即指向函数
// 6. 立即执行函数 this还是指向window
(function () {
console.log('立即执行函数的this' + this);
})();
具体的打印结果:
改变函数内部的this指向
JavaScript常用的三种处理函数内部this的指向问题的方法:call( ) 、apply( ) 、bind( )
三者的区别:
共同点:都可以改变this指向
不同点:
- call( )方法和apply( )方法会调用函数,并且改变函数内部的this指向
- call( )方法和apply( )方法传递的参数不一样,call( )方法传递的参数使用逗号隔开,apply( )方法使用数组的形式传递
- bind( )方法不会调用函数,可以改变函数内部this的指向
主要的应用场景:
- call( )方法经常做继承
- apply( )方法经常跟数组有关系,比如借助数学对象实现数组最大最小值问题
- bind( )方法不会调用函数,但还想改变函数内部this的指向,比如改变定时器内部的this指向
~~
上述有些地方表述可能不够严谨,欢迎交流
~~
边栏推荐
- Receive emails from gmail with pop3
- 联影医疗二面
- 工程师必看:常见的PCB检测方法有哪些?
- [Jiangsu University Self-Chemistry Association stm32F103c8t6] Notes [Introduction to 32 MCUs and Using TIM Output to Compare and Configure PWM]
- "R Language + Remote Sensing" Comprehensive Evaluation Method of Water Environment
- 自定义类加载器
- HSPF 模型应用
- 昆仑通态屏幕制作(连载4)---基础篇(图形设定与显示,按钮灯)
- BLDC电机应用持续火爆,“网红神器”筋膜枪前景几何?
- 【江科大自化协stm32F103c8t6】笔记之【入门32单片机及利用TIM输出比较配置PWM】
猜你喜欢
QT每周技巧(2)~~~~~~~~~界面按钮
Massive remote sensing data processing and application of GEE cloud computing technology [basic, advanced]
边境的悍匪—机器学习实战:第四章 训练模型
Diwen serial screen production (serialization 1) ===== preparation work
BLDC电机应用持续火爆,“网红神器”筋膜枪前景几何?
Target detection, object classification and semantic segmentation of UAV remote sensing images based on PyTorch deep learning
【速成MSP430f149】电赛期间学习MSP430f149笔记
昆仑通态屏幕制作(连载5)---基础篇(串口接收,文本与灯显示)
边境的悍匪—Kaggle—泰坦尼克号生还预测详细教程
R language application in the field of ecological environment
随机推荐
华秋第八届硬创赛与安创加速器达成战略合作,助力硬科技项目成长
华秋第八届硬创大赛携手NVIDIA初创加速计划,赋能企业发展
jvm之方法区
Diwen serial screen production (serialization 1) ===== preparation work
关于报错vscode
CLUE Model Construction Method, Model Validation and Land Use Change Scenario Prediction
QT每周技巧(1)~~~~~~~~~运行图标
新导则下 防洪评价报告编制方法及洪水建模(HEC-RAS)
【速成MSP430f149】电赛期间学习MSP430f149笔记
ipconfig Command Guide
基于OpenCV的双目重建
联影医疗二面
点云统计滤波理解
"R Language + Remote Sensing" Comprehensive Evaluation Method of Water Environment
基于全球模式比较计划CMIP6与区域气候-化学耦合模式 WRF-Chem 的未来大气污染变化模拟
R language application in the field of ecological environment
基于MATLAB 2021b的机器学习、深度学习
Antd 树拖拽一些细节,官网没有,摸坑篇
[Punctuality Atom] Simple application of sys.c, sys.h bit-band operations
PCB 一分钟科普之你真的懂多层板吗?