26 AÄžUSTOS 2012, Pazar
Link_to ile yeni sekmede aç
Bu kod var:
<%= link_to image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook", :target => "_blank"), "http://www.facebook.com/mypage" %>
Nasıl bir kullanıcı bağlantıyı tıklattığında yeni bir sekme açmak için yapabilir miyim?
CEVAP
26 AÄžUSTOS 2012, Pazar
:target => '_blank'
parametre image_tag
parametreleri koy ise link_to
, bir parametre olmalıdır. Bu gibi: kodunuzu değiştirin
<%= link_to image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook"), "http://www.facebook.com/mypage", :target => "_blank" %>
Veya ile bloÄŸu:
<%= link_to "http://www.facebook.com/mypage", :target => "_blank" do %>
<%= image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook") %>
<% end %>
Bunu PaylaÅŸ:
Yeni bir sekmede bir URL JavaScript ku...
JavaScript: location.yeni pencere/sekm...
Sublime Text 2, nasıl yeni bir sekmede...
Program aracılığıyla sekmede aç yeni s...
HTML: link yeni bir sekmede açmak için...