Ruby on Rails で CoffeeScript を使用する方法を学んでいます。私はこれを設定しています:
$ ->
$this = $(this);
$(".ind").hover(
->
$this.addClass("hoverOver")
->
$this.removeClass("hoverOver")
);
そして私はこれを私のcssファイルに持っています
.hoverOver {
cursor:pointer;
background-color:#fff;
}
しかし、うまくいきませんか?コードを変更してテストする場合:
$ ->
$this = $(this);
$(".ind").hover(
->
alert("in")
->
alert("out")
);
これは機能しますが、クラスの追加が機能しない理由がわかりません。