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ş:
Nasıl bağlantı açmak için html yeni se...
HTML: link yeni bir sekmede açmak için...
Program aracılığıyla sekmede aç yeni s...
Yeni bir sekmede bir URL JavaScript ku...
Sublime Text 2, nasıl yeni bir sekmede...