查看`onMouseEnter`的`ember`方式和iphone的{onMouseLeave`

时间:2018-01-11 07:23:07

标签: ios iphone ember.js

目前我正在为桌面和移动设备开发应用程序。我用:

<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');
        }
    }

0 个答案:

没有答案