LONERさんのブログ
ブログ
jquery and coffeescript
coffeescript で jquery の each を使う
$(something).each (index, element) =>
$(element).method ...
each の内部で $(this) を使うことができない。coffeescript では var _this = this として最初に代入しているため、each の処理ごとに this が変わっていかない。そこで、その代わりに $(element) を使う(上記例)。
コメントを書く
コメントを投稿するには、ログイン(無料会員登録)が必要です。