问题描述
//把this转换为静态指针,参数o表示预设置this所指代的对象,返回一个闭包函数Function.prototype.pointTo=function(o){ var _this=this;//存储当前函数对象 return function(){//一个闭包函数 return _this.apply(o,arguments);//执行当前函数并把当前函数的作用域强制设置为指定对象 }}_this.apply(o,arguments);这个是什么情况?_this是对象,o也是对象,没见过这种用法啊
解决方案
举个例子function a(i) { //自定义一个函数a alert(this.message + ",," + i);}var obj = { //自定义一个对象a message : "hello"};//此处是重点 var newFunc = a.pointTo(obj);Function.prototype.pointTo=function(o){ var _this=this;//this就是a函数本身 return function(){ //newFunc就等于这个 return _this.apply(o,arguments); }}newFunc(123321); //当调用这个时 其实相当于 obj.a(123321); 所以在a函数中就能this.message得到obj对象的属性即上边说的//执行当前函数并把当前函数的作用域强制设置为指定对象
时间: 2024-11-05 14:57:28