美文网首页
修改this 指向

修改this 指向

作者: 小呆糊总 | 来源:发表于2021-05-08 15:45 被阅读0次
    题目描述:

    封装函数 f,使 f 的 this 指向指定的对象

    function bindThis(f, oTarget) {
        return function(){
            return f.apply(oTarget,arguments);
        }
    }
    

    相关文章

      网友评论

          本文标题:修改this 指向

          本文链接:https://www.haomeiwen.com/subject/qaaydltx.html