码迷,mamicode.com
首页 > 其他好文 > 详细

this作为构造函数时注意点

时间:2018-12-18 11:08:06      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:highlight   script   var   关键字   div   this   OLE   ons   person   

在 JS 中,为了实现类,我们需要定义一些构造函数,在调用一个构造函数的时候加上 new 这个关键字:

function Person(name) {
   this.name = name;
   console.log(this);// Person
}

var p1 =new Person(‘aa‘);

此时,this 指向这个构造函数调用的时候实例化出来的对象。

 

当然了,构造函数其实也是一个函数,若将构造函数当做普通函数来调用,this 指向 Window

function Person(name) {
   this.name = name;
   console.log(this);// Window
}
var p2 =Person(‘bb‘);

  

this作为构造函数时注意点

标签:highlight   script   var   关键字   div   this   OLE   ons   person   

原文地址:https://www.cnblogs.com/samsara-yx/p/10135003.html

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