我有這個html結構。流星兒童輸入內部的事件處理程序
<div class="test">
<input type="text" /> <!-- this input is generated autoamitcally so i cant set id or className -->
</div>
現在我想使用的輸入,我eventtype selector
應該如何看裏面的按鍵事件?
已經與
Template.myTemplate.events({
'keypress .test.input .test input':function(event,template){
console.log("and work"); //this dosnt get printed on the console.
}
})
我知道「按鍵輸入」的作品,但我已經在同一模板的另一個輸入嘗試,所以我想就觸發此輸入的按鍵。