该文被密码保护。 阅读全文
posted @ 2017-01-06 16:12 大棒槌 阅读(0) 评论(0) 推荐(0) 编辑
摘要: function Person(name,age){ console.log(this) this.names=name; this.age=age; Person.prototype.say=function(){ return this.names+"是xx"; }; this.xx=funct 阅读全文
posted @ 2017-01-06 16:05 大棒槌 阅读(166) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-01-06 15:36 大棒槌 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-01-06 15:27 大棒槌 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-01-06 15:08 大棒槌 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-01-06 14:56 大棒槌 阅读(2) 评论(0) 推荐(0) 编辑
摘要: function P(name,age)={ this.names=name; this.age=age; this.run=function(){ return this.name +“是pig”; }; //this.say=say; } var p1=new P(“你”,12) var p2= 阅读全文
posted @ 2017-01-06 14:55 大棒槌 阅读(157) 评论(0) 推荐(0) 编辑