目前我正在为桌面和移动设备开发应用程序。我用:
<span onMouseEnter={{action 'toolInfoHandler' index }} onMouseLeave={{action 'toolInfoHandler' }}>
<!--info icon -->
</span>
它适用于桌面。但我没有找到iphone
的方法,因为它没有按预期行事。
这是我的行动:
actions:{
setDuration:function(trans, data, options){
Ember.set(options, 'selected', data);
Ember.set(trans, 'duration', data);
this.setMonthlyInstallment(trans, data );
},
toolInfoHandler:function(index){
this.set('selectedIndex', index);
},
shuffleFootNotes(){
this.toggleProperty('ic2bFootNotes');
}
}