我正在学习骨干。我正在尝试使用事件进行更改。但它给了我这个错误Uncaught TypeError: Object function (){ parent.apply(this, arguments); } has no method 'on'
。line 6
下面是我的代码
$(function () {
var ford = new Backbone.Model.extend({
type: 'car',
color: 'blue'
});
ford.on('change', function () {
console.log('something changed');
});
ford.set('type', 'truck');
});
我怎样才能使这项工作?