这是我的按钮单击处理程序:
Template.kanjifinder.events({
'click input.btnOK': function () {
console.log("click");
SetCharacters();
}
});
但是在我为我的文本输入添加下面的事件处理程序后,上面的按钮单击代码已停止工作。
Template.kanjifinder.events = ({
'keydown input.txtQuery': function (evt) {
if (evt.which === 13) {
SetCharacters();
}
}
});
如何使 keydown 事件处理程序和按钮单击事件处理程序都工作?