我正在单击一个按钮来触发一个事件,但它不起作用..不确定是什么原因造成的..
<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");
}