博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[js高手之路]this知多少
阅读量:6325 次
发布时间:2019-06-22

本文共 2894 字,大约阅读时间需要 9 分钟。

this关键字在javascript中的变化非常的灵活,如果用的不好就非常恶心,用的好,程序就非常的优雅,灵活,飘逸.所以掌握this的用法,是每一个前端工程师必知必会的.而且这个也是一些大公司笔试中常见的考察项.

第一种、单独的this,指向的是window这个对象

console.log( this ); //window

注:当前的执行环境是window, 所以this指向了window

第二种、全局函数中的this

1         function show(){2             alert( this ); //window3         }4         show();

show()这样子调用,指向的是window

第三种、函数调用的时候,前面加上new关键字,也就是构造函数的调用方式

1     function show(){2             alert( this ); //object3         }4         new show();

new show这样调用,函数中的this指向的是object

第四种、用call与apply的方式调用函数,这里面的this分两种情况

一般情况下,call与apply后面的第一个参数, 该参数是什么, this就指向什么

call与apply后面如果是undefined和null,this指向的是window

1         function show(){2             alert( this ); //abc3         }4         show.call('abc'); //abc1          function show(){2             alert( this );3         }4         show.call( null ); //window5         show.call( undefined ); //window6         show.call( '' ); //''1         function show( a, b ){2             alert( this + '\n' + a + ',' + b ); //abc, ghostwu, 223         }4         show.call( "abc", 'ghostwu', 22 );5         show.apply( "abc", ['ghostwu', 22] );1 function show( a, b ){2             alert( this + '\n' + a + ',' + b );3         }4         show.call( "abc", 'ghostwu', 22 ); //abc, ghostwu, 225         show.apply( null, ['ghostwu', 22] ); //window, ghostwu, 226         show.apply( undefined, ['ghostwu', 22] );// window, ghostwu, 22

这里要稍微注意一下, call与apply后面的参数传递的区别: call是一个个把参数传递给函数的参数,而apply是把参数当做数组传递给函数的参数,数组第一项传递给函数的第一个参数,第二项传递给函数的第二个参数。。。以此类推

第五种、定时器中的this,指向的是window

1      setTimeout( function(){2             alert( this ); //window3         }, 500 );

第六种、元素绑定事件,事件触发后 执行的函数中的this 指向的是当前的元素

1 2 

第七种、函数调用时如果绑定了bind, 那么函数中的this就指向了bind中绑定的东西

1 2 document.querySelector("input").addEventListener("click", function(){3 alert(this); //window4 }.bind(window));

如果没有通过bind改变this,那么this的指向就会跟第六种情况一样

第八种、对象中的方法:该方法被哪个对象调用,那么方法中的this就指向该对象

var obj = {

userName : "ghostwu",    show : function(){        return this.userName;    }};alert( obj.show() ); //ghostwu

如果把对象的方法,赋给一个全局变量,然后再调用,那么this指向的就是window.

1         var obj = {2             userName : "ghostwu",3             show : function(){4                 return this.userName;5             }6         };7         var fn = obj.show;8         var userName = 'hello';9         alert( fn() );// hello, this指向window

学完之后,我们就来应用下,下面这道题是腾讯考察this的面试题,你都能做出来吗?

1         var x = 20; 2         var a = { 3             x: 15, 4             fn: function () { 5                 var x = 30; 6                 return function () { 7                     return this.x; 8                 }; 9             }10         };11         console.log(a.fn()); //function(){return this.x}12         console.log((a.fn())()); //2013         console.log(a.fn()()); //2014         console.log(a.fn()() == (a.fn())()); //true15         console.log(a.fn().call(this)); // 2016         console.log(a.fn().call(a)); // 15

转载地址:http://txmaa.baihongyu.com/

你可能感兴趣的文章
Kafka实战-Storm Cluster
查看>>
Android总结篇系列:Android 权限
查看>>
R学习笔记 第五篇:字符串操作
查看>>
在Mac OS下配置PHP开发环境
查看>>
(转)介绍下Nuget在传统Asp.net项目中的使用
查看>>
C# ArcEngine 实现点击要素高亮并弹出其属性
查看>>
c#线程初探(一)
查看>>
初识GO语言——安装Go语言
查看>>
SDK命令行操作
查看>>
基于Bootstrap的DropDownList的JQuery组件的完善版
查看>>
EXTJS学习系列提高篇:第二十四篇(转载)作者殷良胜,ext2.2打造全新功能grid系列--阅增删改篇...
查看>>
Hadoop MapReduce编程 API入门系列之分区和合并(十四)
查看>>
判断二叉树是否平衡、是否完全二叉树、是否二叉排序树
查看>>
并查集的应用之求解无向图中的连接分量个数
查看>>
7个神奇的jQuery 3D插件
查看>>
在线浏览PDF之PDF.JS (附demo)
查看>>
波形捕捉:(3)"捕捉设备"性能
查看>>
AliOS Things lorawanapp应用介绍
查看>>
美国人的网站推广方式千奇百怪
查看>>
几十条业务线日志系统如何收集处理?
查看>>