所以我有一个link_to按钮,用js加载部分。
这是链接:
<%= link_to "See all...", questions_post_comment_path, class: "button", id: "new_link", :remote => true %>
我加载的部分内容如下:
<% @content.each do |content| %>
<%= link_to "Link", my_path %>
<% end %>
这是js:
$('#new_link').html("<%= j (render :partial => 'questions') %>");
一切都很好但现在不是链接到'my_path'而是链接到questions_post_comment_path,部分中的每个链接都受'button'类的影响。 如何在不影响部分内容的情况下加载部分点击?
答案 0 :(得分:2)
$('#new_link').replaceWith("<%= j (render :partial => 'questions') %>");