标签:style class blog code color cti
//构造函数 function Fn(name) { this.name = name; //属性,存放不同的东西 } Fn.prototype.showName = function(){ //构造函数.prototype.方法,存放相同的东西,在内存中存放一份 alert(this.name); } var p1 = new Fn(‘小明‘); //对象 = new 构造函数 //当new去调用一个函数 : 这个时候函数中的this就是创建出来的对象,而且函数的的返回值直接就是this啦(隐式返回) p1.showName(); // 对象.方法 var p2 = new Fn(‘小强‘); p2.showName(); p1.showName == p2.showName // true,因为用了原型prototype
标签:style class blog code color cti
原文地址:http://www.cnblogs.com/joya0411/p/3791759.html