0
我想在迭代函數中使用jQuery元素,同時保持對類實例變量的訪問。CoffeeScript - 訪問實例變量和jQuery元素
例如:
class MyClass
myVar: true
myFunction: =>
$('div').each ->
console.log @.myVar # true?
console.log $(this) # div?
@tymeJV否,代碼看起來並不精緻所有.. – meagar