JS problem declaring array in class
淡淡烟草味
淡淡烟草味 2017-05-19 10:25:21
0
2
665
var dynamic_particle=function(){
        this.init();
    }
dynamic_particle.prototype={
       init:function(){
           this.a=new Array();
           this.a.push(1);
           alert(a[0]);
        }
    }

a error is undefined

淡淡烟草味
淡淡烟草味

reply all(2)
仅有的幸福
var dynamic_particle=function(){
        this.init();
    }
dynamic_particle.prototype={
       init:function(){
           this.a=new Array();
           this.a.push(1);
           alert(this.a[0]);
        }
    }

You all know how to use this.a before. Why not add this. when using alert... an error will definitely be reported

習慣沉默

Encapsulation method is generally used like 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()
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!