我正在尝试将链接添加到除一个 td 之外的整行。我设法通过以下方式使整行可点击
<tbody>
<% @inbox_messages.each do |message| %>
<tr data-link="<%= show_received_message_path(message) %>">
<td>
<%= check_box_tag 'select' %>
</td>
<td>
<%= message.received_sender %>
</td>
<td>
<%= message.subject %>
</td>
<td>
<%= message.created_at %>
</td>
</tr>
<% end %>
</tbody>
并使用以下咖啡脚本
$ ->
$("tr[data-link]").click ->
window.location = $(this).data("link")
但是,问题在于,当我勾选复选框时,它会将我重定向到show_received_message_path
我不想要的地方。
我尝试过使用 div,但是我了解到将 div 放入 trs 是无效的 html。
有没有办法链接除复选框之外的所有行?