我正在学习如何将 CoffeeScript 与 Ruby on Rails 一起使用。我有这个设置:
$ ->
$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")
);
这行得通,但我不明白为什么添加一个类不起作用?