jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何在jQuery $.bind()中使用Coffeescript’this’?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在Coffeescript中使用课程时,我遇到了一个重大问题,让我举例说明一下
class Bet
  constructor: () ->

  placeBet: ->
    $('#chips > div').bind 'click',->
      amount = $(this).attr 'id'
      pile = $(this)
      switch amount
        when "ten" then this.bet pile,amount #This line causes a problem

  bet: (pile,amount) ->
    alert 'betTing!'

对this.bet的调用会产生以下错误

未捕获TypeError:Object#没有方法’bet’

所以,目前我的类的实例方法没有被调用,
如何正确地调用我的类的bet方法,而不会与jQuery选择器的这种碰撞(这是我以为现在发生了什么)?

提前非常感谢!

解决方法

@H_616_16@ 尝试这个:
class Bet
  constructor: () ->

  placeBet: ->
    that = this
    $('#chips > div').bind 'click',->
      amount = $(this).attr 'id'
      pile = $(this)
      switch amount
        when "ten" then that.bet pile,amount) ->
    alert 'betTing!'

大佬总结

以上是大佬教程为你收集整理的如何在jQuery $.bind()中使用Coffeescript’this’?全部内容,希望文章能够帮你解决如何在jQuery $.bind()中使用Coffeescript’this’?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。