gpt4 book ai didi

ruby-on-rails - link_to 标记在同一页 rails 3 上

转载 作者:行者123 更新时间:2023-12-04 02:53:17 25 4
gpt4 key购买 nike

我正在尝试使用 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 - link_to 标记在同一页 rails 3 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14551808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com