我有一些 html 控件,例如输入等。我想根据对控件的关注来更新一些状态
例如:
我想找到一个获得焦点的输入ID。
我尝试了类似下面的方法,但它一直在调用该方法。
events :{
'focus #input' : "updateCurrentCell"
},
updateCurrentCell: function(event) {
alert('updateCurrentCell called');
// Update the current cell.
}
我在做什么错了?