發現難以確定問題,這是我的問題。link_to中的錨標記
alert.html
<div class="alert_text">
<%= link_to "Comment", :action=>:show, :id=>lp.id %>
</div>
當我點擊需要我展示
show.html
表頁面開始顯示的頁面鏈接之後,下面的部分代碼。
<div id="comments">
<%= render :partial=>'comments' %>
</div>
我需要的是,當我在鏈接評論單擊它必須加載頁面顯示正常,但應直接向頁的註釋部分。
編輯:就像,因爲它發生在這個stackoverflow.com,在上面留下StackExchange當你點擊收件箱消息。
我以這種方式使用它並且正確地做到了<%= link_to「Comment」,:action =>:show,:id => lp.id,:anchor =>'lessonplan_comments'%> – Nithin