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

js 中对于this 的理解的 经典案例

时间:2018-05-29 18:54:18      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:type   getname   pre   name   经典   bsp   console   code   var   

function Foo(){
   getName = function(){console.log(1);};
   return this;
}
Foo.getName
= function(){console.log(2);}; Foo.prototype.getName = function(){console.log(3);}; var getName = function(){console.log(4);}; function getName(){console.log(5);} Foo.getName();//2 getName();//4 Foo().getName();//1 getName();//1 new Foo.getName();//2 new Foo().getName();//3 new new Foo().getName();//3

 

js 中对于this 的理解的 经典案例

标签:type   getname   pre   name   经典   bsp   console   code   var   

原文地址:https://www.cnblogs.com/hss-blog/p/9106251.html

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