我正在尝试使用link_to链接到同一页面上的元素
在基本的HTML中,我会这样做
<a href="#tom">Tom Roche</a>
<a id="tom">Chapter 4</a>
我的应用程式中有这个
<%= link_to 'Tom Roche' %>
<h2>Tom Roche</h2>
我将如何链接这些内容,以便在单击Tom Roche时与Tom Roche一起进入h2
我已经试过了
<%= link_to 'Tom Roche', our_team_path(:anchor => '#tom') %>
<h2><a id="tom">Tom Roche</a></h2>
但它不起作用
谁能指出我需要做什么,link_to出于某种原因将我扔了,即使我知道它是一个标签
谢谢
最佳答案
link_to也可以产生带有 anchor 或查询字符串的链接:
http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html
link_to "Comment wall", profile_path(@profile, :anchor => "wall")
# => <a href="/profiles/1#wall">Comment wall</a>
关于ruby-on-rails - 同一页面 rails 上的link_to标签3,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14551808/