我是 Backbone.js 的新手,我正在通过各种示例学习这一点。现在我有点卡在我一直在做的事情上。
小提琴链接:http: //jsfiddle.net/eSvA8/
如您所见,我有一个 html 按钮和一个链接,我想使用按钮和链接调用该addItem
函数。addBtn
addLink
请有人可以帮我解决这个问题。下面是我正在使用的代码。
我的 Javascript 使用 Backbone.js
var ListView = Backbone.View.extend({
el: $('#testContainer'),
events: {
'click button#add': 'addItem',
'click button#addBtn': 'addItem',
'click #addLink': 'addItem'
},
initialize: function(){
_.bindAll(this, 'render', 'addItem');
this.counter = 0;
this.render();
},
render: function(){
$(this.el).append("<button id='add'>Add list item</button>");
$(this.el).append("<ul></ul>");
},
addItem: function(){
this.counter++;
console.log('inside');
$('ul', this.el).append("<li>hello world"+this.counter+"</li>");
}
});
var listView = new ListView();
我的 HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div id="testContainer" style="background-color: gray; min-height:200px; min-width:200px; color: white;"></div>
<button id="addBtn">Add using a button control !</button>
<br/>
<a id="addLink" style="cursor:pointer">Add using a simple link</a>
</body>
</html>