码迷,mamicode.com
首页 > Web开发 > 详细

jquery绑定事件的坑,重复绑定问题

时间:2018-06-21 17:24:29      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:hide   ==   实现   https   点击   绑定   http   query   raw   

我实现点击table表格中的删除按钮,找到当前按钮的祖先元素tr 然后删除该行,但是我首先点击删除的时候要先弹出提示框,是否要下载,这时在点击删除按钮删除,之前没有考虑到事件重复绑定问题,所以每次点击删除的时候就会多选择几行,之后选择的越来越多,经过网友解答,成功解决,先把重复绑定的删除的click事件解绑再继续绑定,就没问题。

源问题在这里:https://segmentfault.com/q/1010000015345578

//删除单条status
function removeStatus(e,tableId) {
    $("deleteModal .modal-body p").html("确认删除该条数据吗?");
    $("#deleteModal"). modal();
    $("#delete").unbind(‘click‘).click(function () {
        $("#deleteModal"). modal(‘hide‘);
        deleteTr(e);
        for(let s of statusList){
            if(s[‘tableId‘]===tableId){
                statusList.remove(s)
            }
        }
    })
}
function deleteTr(e){
    t.row($(e).parents(‘tr‘)[0]).remove().draw(false);
}

 

jquery绑定事件的坑,重复绑定问题

标签:hide   ==   实现   https   点击   绑定   http   query   raw   

原文地址:https://www.cnblogs.com/beileixinqing/p/9209405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!