-
Notifications
You must be signed in to change notification settings - Fork 4
/
listening-attr.html
42 lines (34 loc) · 1.18 KB
/
listening-attr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"></script>
<script>
var Book = Backbone.Model.extend({
defaults: {
title: '',
pages: 0
},
initialize: function(){
console.log('Cambiaremos el modelo');
this.on('change', function(){
console.log('Mi libro ha sido modificado');
});
this.on('change:title', function(){
console.log('Hemos modificado el título');
});
}
});
var book = new Book();
book.set('title', 'Cervantes en Barcelona');
</script>
</body>
</html>