我需要从下面的复选框中获取ID
<% @task.each do |task| %>
<tr id="tr_<%= task.id%>">
<td><%= check_box_tag "done[#{task.id}]",task.id, task.done, data:{
remote: true,
url: url_for(action: :toggle, id: task.id, checked: task.done),
method: "POST"
} %> </td>
<td><%= task.title %></td>
<td><%= task.detail %></td>
<td><%= task.task_date.strftime('%d/%m/%Y') %></td>
<td><%= button_to('Show', task_path(task) , :class => 'btn btn-default', :method => :get) %></td>
<td><%= button_to('Edit', edit_task_path(task), :class => 'btn btn-primary',:method => :get) %></td>
<td><%= button_to('Remove', task_path(task), :class => 'btn btn-danger', method: :delete, data:{ confirm: 'Are you sure?' }) %></td>
</tr>
<% end %>
我的JS按预期运行,但我没有弄清楚如何做到这一点。
$("#tr_37").change(function(){
$(this).hide();
});
答案 0 :(得分:2)
复选框更改时,是否要隐藏tr
?
我认为你需要在更改时抓住复选框的事件
$("tr input[type='checkbox']").change(function(){
$(this).closest("tr").hide();
});