Ruby on Rails link_to 内部 id
我如何使用 link_to 才能正常转到页面上的特定(html)ID 如果我想转到我可以使用的页面上的“whatever_id”
<a href="http://www.example.com/index/mypage#whatever_id>Click Here</a>
,但我想使用我的 link_to
<%= link_to "click here" , {:action => "mypage", :controller => "index" }, :id => "#whatever_id"%>
辅助方法。有谁知道该怎么做?是否可以?
轨道2.3.4
How do i use a link_to inorder to go to a specific (html) ID on a page normally
if i wanted to go to the "whatever_id" on a page i could use
<a href="http://www.example.com/index/mypage#whatever_id>Click Here</a>
but i would like to use my link_to
<%= link_to "click here" , {:action => "mypage", :controller => "index" }, :id => "#whatever_id"%>
helper methods. Does anyone know how to do this? Is it possible?
Rails 2.3.4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
link_to 可以将锚点添加到 URL。
从文档,
在您的情况下,您可能想要,
link_to can add anchors to a URL.
From the documentation,
In your case you probably want,