Railsのテーブル要素にリンクをつけた
10620 ワード
tableのtr(行ごと)にリンクを貼る
viewにリンクを追加
index.html.erb
<tbody class="institution_index_table_tbody">
<% @institution.each do |institution| %>
<%# data-hrefにリンク先を記述する %>
<tr class="institution_index_tbody_tr" data-href="/institutions/<%= institution.id%>">
<td class="institution_index_td name_td"><%= institution.name %></td>
<td class="institution_index_td postcode_td"><%= institution.postcode %></td>
<td class="institution_index_td address_td"><%= institution.address %></td>
<td class="institution_index_td intro_td"><%= institution.introduction%></td>
</tr>
<% end %>
</tbody>
jsの設定
app/javascript/packs/institutions.js
jQuery(document).on("turbolinks:load", function() {
$(".institution_index_tbody_tr").on('click', function() {
window.location = $(this).data("href");
});
});
institution_index_tbody_trクラスをクリックしたら、data-hrefのリンクに遷移する。
app/javascript/packs/application.js
import "packs/institutions.js"
tableのtd(セルごと)にリンクを貼る
ほとんど一緒
viewにリンクを追加
index.html.erb
<tbody class="institution_index_table_tbody">
<% @institution.each do |institution| %>
<tr class="institution_index_tbody_tr">
<td class="institution_index_td name_td" data-href="/institutions/<%= institution.id%>"><%= institution.name %></td>
<td class="institution_index_td postcode_td"><%= institution.postcode %></td>
<td class="institution_index_td address_td"><%= institution.address %></td>
<td class="institution_index_td intro_td"><%= institution.introduction%></td>
</tr>
<% end %>
</tbody>
jsの設定
app/javascript/packs/institutions.js
jQuery(document).on("turbolinks:load", function() {
$(".name_td").on('click', function() {
window.location = $(this).data("href");
});
});
// institution_index_tdにリンク先を設定しない<td>をクリックするとエラーになる
jQuery(document).on("turbolinks:load", function() {
$(".institution_index_td").on('click', function() {
window.location = $(this).data("href");
});
});
app/javascript/packs/application.js
import "packs/institutions.js"
参考資料
railsでテーブル要素の一つ一つにリンクを貼る方法
how to make a whole row in a table clickable as a link?
Author And Source
この問題について(Railsのテーブル要素にリンクをつけた), 我々は、より多くの情報をここで見つけました https://qiita.com/tuk19/items/0bff7391c8aa589cf904著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .