将target =“_ parent”添加到链接的RubyonRails语法是什么?

时间:2010-12-04 02:11:12

标签: ruby-on-rails syntax target

我是一名设计师,而不是一名程序员,虽然我可以破解.PHP我已经快速地为Ruby应用程序设计了一些设计。从来没有看过Ruby,对于非常基本的问答很抱歉。

如何将target =“_ parent”添加到此网址?到目前为止我尝试过的东西已经搞砸了应用程序。

<%= link_to 'Click to go here', 'http://www.url.ie/forum/' %>

谢谢, 艾伦

1 个答案:

答案 0 :(得分:1)

<%= link_to 'Click to go here', 'http://www.url.ie/forum/', :target => "_parent" %>

在链接文本和网址之后,跟随的哈希(即:key => 'value')将转换为标记的属性!

仅供参考,link_to也可以接受一个块:

<%= link_to 'http://www.url.ie/forum', :target => "_parent" do %>
  <%= image_tag "forum.png", :alt => "" %>
  anything here would be the content inside the `a` tag!
  You could also insert images here!
<% end %>