当前位置: 代码迷 >> 综合 >> bootstrap的模态框show.bs.modal、hidden.bs.modal函数重复触发的
  详细解决方案

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

热度:6   发布时间:2023-12-09 04:48:41.0

原代码片段:

    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');}


 

  相关解决方案