BackboneJS - Evento ativado
Descrição
Ele associa um evento a um objeto e à função de retorno de chamada. Sempre que um evento é disparado, ele executa o retorno de chamada.
Sintaxe
object.on(event, callback function, [context])
Parâmetros
event - Liga um objeto.
callback - É a referência ao código.
context - É um objeto que pode ser passado para uma função de retorno de chamada.
Exemplo
<!DOCTYPE html>
<html>
<head>
<title>Event On Example</title>
<script src = "https://code.jquery.com/jquery-2.1.3.min.js"
type = "text/javascript"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
type = "text/javascript"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
type = "text/javascript"></script>
</head>
<body>
<script type = "text/javascript">
//Here creating an object 'myVal' and extending with Backbone.Events method
var myVal = _.extend({name:'TutorialsPoint!!!'}, Backbone.Events);
// The on() method will bind callback function to an object and
// invoked whenever an event triggers
myVal.on('myFunc', function () {
document.write("The triggered value is: ");
document.write(this.name);//The name will get display by referring the current object
});
//It triggers the 'myFunc' event on object 'myVal'
myVal.trigger('myFunc');
</script>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salvar o código acima em on.htm Arquivo
Abra este arquivo HTML em um navegador.