“Bocón JS” Código de respuesta

Backbone JS Event Listener

var ViewName = Backbone.View.extend({  
   initialize: function(){  
      this.$el.on("eventName", this.functionName, this)  
   },  
   functionName: function(){  
    //whatever  
   },
   remove: function() {
      this.$el.off("eventName", this.functionName);
      Backbone.View.prototype.remove.apply(this, arguments);
   }  
});
Nervous Newt

Bocón JS

var ships = new Backbone.Collection;

ships.on("add", function(ship) {
  alert("Ahoy " + ship.get("name") + "!");
});

ships.add([
  {name: "kjnFlying Dutchman"},
  {name: "Black Pearl"}
]);
Tough Toucan

Respuestas similares a “Bocón JS”

Preguntas similares a “Bocón JS”

Más respuestas relacionadas con “Bocón JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código