recherche

Maison  >  Questions et réponses  >  le corps du texte

Problème JS lors de la déclaration d'un tableau en classe

var dynamic_particle=function(){
        this.init();
    }
dynamic_particle.prototype={
       init:function(){
           this.a=new Array();
           this.a.push(1);
           alert(a[0]);
        }
    }

aL'erreur n'est pas définie

淡淡烟草味淡淡烟草味2791 Il y a quelques jours695

répondre à tous(2)je répondrai

  • 仅有的幸福

    仅有的幸福2017-05-19 10:27:21

    var dynamic_particle=function(){
            this.init();
        }
    dynamic_particle.prototype={
           init:function(){
               this.a=new Array();
               this.a.push(1);
               alert(this.a[0]);
            }
        }

    Vous savez tous comment utiliser this.a auparavant. Pourquoi ne pas ajouter this. lors de l'utilisation d'une alerte... une erreur sera certainement signalée

    .

    répondre
    0
  • 習慣沉默

    習慣沉默2017-05-19 10:27:21

    La méthode d'encapsulation est généralement utilisée comme ceci :

    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()

    répondre
    0
  • Annulerrépondre