时间:2022-12-07 09:38:27 | 栏目:JavaScript代码 | 点击:次
首先,用jqury选择器,选中勾选的行:
var cks = $("#indicator_table").find("input[type='checkbox']:checked");
然后弹出一个确认是否删除框,为是否删除框中的确定绑定一个delInd()事件;
先在页面把选中的那一行,remove或者html(“ ”)掉,
$("#indicator_table").find("input[type='checkbox']:checked").each(function(i, o){ // 获取checkbox所在行的顺序 n = $(this).parents("tr").index(); $("#indicator_table").find("tr:eq(" + n + ")").remove(); }); $("#deleteModal").modal("hide");
在对剩下的行重新排序,又需要jqury选择器,选中表格的行,并进行循环赋值:
$("#indicator_table").find("tr").each(function(i){ $(this).find("td").eq(10).find("a").text(i+1); });