我正在关注使用 ajax 的搜索排序
这里我的 gemfile 包括
- 导轨 3.2.11
- sqlite-3
- 将分页,'3.0'
- jquery-rails,'2.2.1'
Application.js 文件包括
//= 需要 jquery
//= 需要 jquery_ujs
application.js 中的脚本
$(function () {
$('#products th a').live('click', function () {
$.getScript(this.href);
return false;
});
})
进入控制台出错
$("#products th a").live is not a function
我搜索了但我没有找到任何解决方案。谁能帮我我在这里犯了什么实际错误
谢谢