var e = _.extend({}, Backbone.Events);
e.on('hello', function hello1() {
console.log('hello1');
});
e.on('hello', function hello2() {
console.log('hello2');
});
e.on('world', function () {
console.log('world');
});
e.on('all', function () {
console.log('------------all--------');
});
e.trigger('hello');
e.trigger('world');