4种函数调用方式

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <script>
        //1.函数执行模式
        function add(a,b){
            console.log(this);
            return a+b;
        }
        add(1,2);//this等于window


        //2.对象方法的调用模式
        function Cat(){
            this.show = function(){
                console.log(this);
            }
        }
        var c = new Cat();
        c.show();//对象调用自己的方法
        //this指向c对象
        //所有的事件响应方法都是对象方法调用模式

        //3.构造器调用模式
        function Cat(){
            this.show = function(){
                console.log(this);
            }
        }
        var c = new Cat();
        //构造器调用模式:this指向构造出来的对象



        //4.call和apply调用模式
        function add(a,b){
            this.result = a+b;
        }
        var p = {};//定义一个空对象
        add.call(p,3,4);//在这个方法调用的时候,this指向p
        console.log(p.result);
        //apply 和 call 是一样的用法,只不过apply第二个参数用数组进行传递
        </script>
    </body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值