0
我點擊一個按鈕來觸發一個事件觸發內,但它不工作....不知道是什麼原因造成它..按鈕不是引導酥料餅
<div class="popOverProgressInsideRightDiv">
<button id="popOverPause" class="btn btn-mini btn-gray btn-right">Pause</button>
</div>
render : function() {
var compiledTemplate = Handlebars.compile(aTemplate);
$('#popOverPause').on('click', this.handlePausePress);
this.delegateEvents();
},
handlePausePress : function(event) {
alert("here");
}