下面你会看到我的jquery:
$(function() {
$(".pagination span.page a").click(function (){
$.get(this.href, null, alert("The pagination link was clicked" + this.href), "script");
return false;
});
});
我知道我的班级电话正在工作,因为警报弹出。我认为这是我称之为“脚本”的地方,它失败了,因为它没有拉起页面。这是一个调用 index.js.erb 脚本的 Rails 3 应用程序。这是 index.js.erb:
$("#search").html("<%= escape_javascript(render("search")) %>");
有任何想法吗?