bootstrap的模态框show.bs.modal、hidden.bs.modal函数重复触发的

原代码片段:

    function showServerInfo(recordId) {
        $("#showFeeWhitherModal").on('hidden.bs.modal', function (e) {
            $(this).find('.modal-body').html(' 等待结果,请稍后...');
            $(this).removeData('bs.modal');
        }).on('show.bs.modal', function (e) {
            var modal = $(this);
            modal.find('.modal-body').load(
                    sys.contextPath + "/admin/repaylog/repaylog-fee-detail?recordId=" + recordId);
        });
        $("#showFeeWhitherModal").modal('show');
    }

问题描述:
       根据jquery、js动态手动打开或关闭模态框时,每打开一次,show.bs.modal、hidden.bs.modal函数触发次数就会+1,第一次打开,触发shown.bs.modal、hidden.bs.modal函数一次,第二次打开,触发shown.bs.modal、hidden.bs.modal函数两次... 第N次打开,触发shown.bs.modal、hidden.bs.modal函数N次,对应接口会请求N次,modal也会加载N次。

问题分析:
        出现这种情况,可以从绑定事件的地方下手,触发多次,说明绑定了多次此事件,拿jquery来说,因为采用jQuery .on()  方式绑定钩子事件,如果没有把绑定事件的函数放在最外层,而是放在局部,就会造成多次绑定的现象发生,所有我们可以使用jquery 的 .off() 方式去移除掉已经绑定事件的操作,保证事件只绑定一次,进而解决问题。

代码解决片段:

    function showServerInfo(recordId) {
        $("#showFeeWhitherModal").on('hidden.bs.modal', function (e) {
            $(this).find('.modal-body').html(' 等待结果,请稍后...');
            $(this).removeData('bs.modal');
            $('#showFeeWhitherModal').off('show.bs.modal');//去除绑定
        }).on('show.bs.modal', function (e) {
            $('#myModal').off('hidden.bs.modal');//去除绑定
            var button = $(e.relatedTarget);
            var modal = $(this);
            modal.find('.modal-body').load(
                    sys.contextPath + "/admin/repaylog/repaylog-fee-detail?recordId=" + recordId);
        });
        $("#showFeeWhitherModal").modal('show');
    }


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

痕0712

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值