jquery – coffeescript胖箭头访问不是父母’这’

前端之家收集整理的这篇文章主要介绍了jquery – coffeescript胖箭头访问不是父母’这’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这很好用
@nav.on 'click',->
        _this.mover _this.nav.index $(@)

但我想知道我是否可以使用胖箭而不是这样

@nav.on 'click',=>
        @mover @nav.index $(????)

但是我会用什么代替@来代替_this?

解决方法

jQuery事件处理程序将事件对象作为参数获取,并且该事件对象具有 targetcurrentTarget属性
@nav.on 'click',(ev) =>
    @mover @nav.index $(ev.currentTarget)

您可能需要其中一个other properties of ev,具体取决于您的具体情况.

原文链接:https://www.f2er.com/jquery/177421.html

猜你在找的jQuery相关文章