JavaScript回顾学习:模拟call、apply、bind方法

本文介绍了如何使用JavaScript模拟实现Function原型上的三个核心方法:call、apply和bind。这些方法允许开发者改变函数调用的上下文,这对于理解JavaScript的this指向和函数应用非常关键。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

模拟call方法:

Function.prototype.mycall = function (context) {
    var context = context || window;
    context.fn = this;

    var args = [];
    for (var i = 0, len = arguments.length; i < len; i++) {
        args.push('arguments[' + i + ']');
    }

    var result = eval('context.fn(' + args + ')');
    delete context.fn;
    return result;
}

模拟apply方法:

        Function.prototype.myapply = function (context, arr) {
            var context = context || window;
            context.fn = this;

            var result;
            if (!arr) {
                result = context.fn();
            }
            else {
                var args = [];
                for (var i = 0, len = arr.length; i < len; i++) {
                    args.push('arr[' + i + ']');
                }
                result = eval('context.fn(' + args + ')')
            }

            delete context.fn
            return result;
        }

模拟bind方法:

        Function.prototype.mybind = function (context) {
            var self = this;
            var args = Array.prototype.slice.call(arguments, 1);

            var fNOP = function () { };

            var fBound = function () {
                var bindArgs = Array.prototype.slice.call(arguments);
                return self.apply(this instanceof fNOP ? this : context, args.concat(bindArgs));
            }

            fNOP.prototype = this.prototype;
            fBound.prototype = new fNOP();
            return fBound;
        }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值