我正在尝试在 Rails 应用程序中使用一些 Jquery。这是我第一次在 Rails 中使用 Jquery,我似乎无法让它工作。我正在使用 rails4,这就是我的代码的样子
我有一个带有索引操作的页面控制器
索引动作
def index
respond_to do |format|
format.html
format.js
end
end
pages.js
$(document).ready(function(){
$('.button').click(function(){
$(this).fadeOut('slow);
});
});
index.html.erb
<button class="button">Clickme</button>
但是我没有得到回应,我在这里错过了什么吗?