码迷,mamicode.com
首页 > Web开发 > 详细

js的call()方法

时间:2019-11-26 23:06:51      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:window   nbsp   log   color   class   cti   ons   方法   func   

        function fn(){
            console.log(this)
        }
        fn.call(fn)     // fn(){console.log(this)}
        fn.call.call(fn)    // window
        function fn1(){
            console.log(1)
        }
        function fn2(){
            console.log(2)
        }   
        fn1.call(fn2)   // 1
        fn1.call.call(fn2)  // 2  ----因为fn1.call.call()又指向window

 

js的call()方法

标签:window   nbsp   log   color   class   cti   ons   方法   func   

原文地址:https://www.cnblogs.com/wuqilang/p/11938667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!