我有一個按鈕,當我按下按鈕時需要創建更多按鈕。單擊按鈕創建按鈕
這是我爲按鈕寫着:
<div class="response-container" id="response-container">
<a href="#" class="button add-button" id="add-button">Add button</a>
</div>
我努力學習Backbone.js的,所以我寫了一個視圖中單擊添加按鈕時,創建更多的按鈕。
createButton = Backbone.View.extend({
events: {
'click .add-button': 'add_script'
},
add_script: function() {
console.log('Pressed');
//create a new button from here?
}
});
任何人都可以幫助我做到這一點嗎? console.log('Pressed')
甚至不起作用。我正在嘗試學習Web開發,有沒有任何文件可以建議我?我歡迎所有的建議在Backbone.js
請你要麼清理您的HTML或張貼整個事情?我不確定那裏發生了什麼 – birdoftheday
它應該是這樣的......事件:{ 「click.add-button」:「add_script」 }, – vrn53593
解釋我們這是什麼意思['click .add-script-button':'add_script']在你的代碼中@waterkinq – vrn53593