subtitle
06
26
12
原生方法2 原生方法2
改变this指向的三大方法原理都是在需要绑定的上下文中添加一个函数,执行函数,删除函数,返回结果。 call Function.prototype.xf_call = function (thisArg, ...args) {
2023-06-12
09
this指向详解 this指向详解
this全局 // 全局作用域中的this指向window console.log("quanju ----> this", this); // Window 全局定义的函数this// 全局中定义的函数也指向window (无论