“Backbone JS Event Hörer” Code-Antworten

Event -Hörer JavaScript

const element = document.querySelector(".class__name");

element.addEventListener("click", () => {
	console.log("clicked element");
});
Levaillant's Barbet

Backbone JS Event Hörer

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

Ähnliche Antworten wie “Backbone JS Event Hörer”

Fragen ähnlich wie “Backbone JS Event Hörer”

Weitere verwandte Antworten zu “Backbone JS Event Hörer” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen