var dynamic_particle=function(){ this.init(); } dynamic_particle.prototype={ init:function(){ this.a=new Array(); this.a.push(1); alert(a[0]); } }
aDer Fehler ist undefiniert
var dynamic_particle=function(){ this.init(); } dynamic_particle.prototype={ init:function(){ this.a=new Array(); this.a.push(1); alert(this.a[0]); } }
你都知道前面用this.a ,alert的时候为何不加上this.呢……肯定报错
this.
var defOpt = { a: [1] } var dynamic_particle=function(options){ if(!(this instanceof dynamic_particle)){ return new dynamic_particle(options); } this.opt = $.extend({}, defOpt, options); this.init(); } dynamic_particle.prototype={ init:function(){ console.log('初始化数据:', this.opt); }, other: function() { console.log('调用option中的新数据', this.opt.newData); } } var dp = dynamic_particle({ newData: [2] }) dp.other()
你都知道前面用this.a ,alert的时候为何不加上
this.
呢……肯定报错封装方式,一般是这样使用的: