美文网首页js
javascript中的apply

javascript中的apply

作者: CRUD_科科 | 来源:发表于2019-06-24 13:44 被阅读0次
    // 与call不同的是,后面的参数是一个数组
    Function.prototype.apply = function (cotext, args) {
      context = context ? context : window;
      context.fn = this;
      if(!args) return context.fn;
      let r = eval('context.fn('+args+')');
      delete context.fn;
      return r;
    }
    

    相关文章

      网友评论

        本文标题:javascript中的apply

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