我做了一个局部刷新的的 ajax。
$("#tpl_exam_category_<%= @category_id%>").html("<%= j render :partial => 'phy_exam_category_item', :collection => Health::PhyExamTpl.find(@phy_exam_tpl_id).phy_exam_tpl_items.group_category(@category_id).sort, :as => :phy_exam_tpl_item %>")
我这个 rander 的是一个 tbody,每一行是有一个编辑和删除连接, 如:edit
$(document).ready ->
$(".tpl_item_edit_modal").click () ->
category_item_id = $(this).attr("data-category-item-id")
tpl_item_id = $(this).attr("data-phy-exam-tpl-item")
phy_exam_tpl_item_edit category_item_id,tpl_item_id
我怎么帮重新渲染的连接找到之前 DOM 的的节点??????