上一页 1 ··· 28 29 30 31 32
  2022年6月9日
摘要: 找调用者 1、如果有this,就先看this在哪个函数中,就是离this最近的function,没有就是window 2、找到函数后,辨别哪个是调用者 例1: 点击查看代码 function fn(){ consolo.log(this) } fn() 打印: Window {window: Win 阅读全文
posted @ 2022-06-09 20:50 香香鲲 阅读(39) 评论(0) 推荐(1) 编辑
摘要: this 代表了当前的对象,哪个对象调用了this所在的函数,this就代表了哪个对象; 例1: function fn(){ var a = 1; console.log(this) } fn() 控制台打印结果: Window {window: Window, self: Window, doc 阅读全文
posted @ 2022-06-09 15:47 香香鲲 阅读(33) 评论(0) 推荐(1) 编辑
上一页 1 ··· 28 29 30 31 32