在关闭电流模态(Bootstrap)之后打开新模态



我使用bootstrap模态显示PDF

我希望当用户关闭模式时(通过单击关闭或单击MDOAL外(打开新的模态

为了在模态上打开我的pdf,我使用此代码:

<a class="btn btn-primary show-pdf" title="exemple" href="./parcel.php">PDF</a>
<script type="text/javascript">
(function(a){a.twModalPDF=function(b){defaults={title:"Parcel",message:"Fail",closeButton:true,scrollable:false};var b=a.extend({},defaults,b);var c=(b.scrollable===true)?'style="max-height: 1020px;overflow-y: auto;"':"";html='<div class="modal fade" id="oModalPDF">';html+='<div class="modal-dialog modal-lg">';html+='<div class="modal-content">';html+='<div class="modal-body" '+c+">";html+=b.message;html+="</div>";html+='<div class="modal-footer">';if(b.closeButton===true){html+='<button type="button" class="btn btn-primary" data-dismiss="modal">Fermer</button>'}html+="</div>";html+="</div>";html+="</div>";html+="</div>";a("body").prepend(html);a("#oModalPDF").modal().on("hidden.bs.modal",function(){a(this).remove()})}})(jQuery);

  $(function(){    
    $('.show-pdf').on('click',function(){
      var sUrl = $(this).attr('href');
      var sTitre = $(this).attr('title');
      var sIframe = '<object type="application/pdf" data="'+sUrl+'" width="100%" height="500">Aucun support</object>';
      $.twModalPDF({
        title:sTitre,
        message: sIframe,
        closeButton:true,
        scrollable:false
      });
      return false;
    });
  })
</script>

这很好,为了打开新的模式,我有这个,但是它们不起作用...

<div class="modal fade" id="Finish" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Attention</h4>
      </div>
      <div class="modal-body">
        ....
      </div>
      <div class="modal-footer">
        <div class="col-md-5">
          <button type="button" class="btn btn-success btn-lg col-xs-12 margin-bottom" data-dismiss="modal">No</button>
        </div>
        <div class="col-md-7">
          <form action="./forms/success.php" method="post">
            <button type="submit" name="saveDispatching" value="1" class="btn btn-lg btn-default col-xs-12">Yes</button>
          </form>
        </div>
      </div>
    </div>
  </div>
</div>
<script>
    $('.modal').click(function(e){
        e.preventDefault();
        $('#oModalPDF')
            .modal('hide')
            .on('hidden.bs.modal', function (e) {
                $('#Finish').modal('show');
                $(this).off('hidden.bs.modal'); // Remove the 'on' event binding
            });
    });
</script>

我该怎么做?谢谢您的帮助

尝试这样组织您的代码:

$(function(){    
  $('.show-pdf').on('click',function(){
  var sUrl = $(this).attr('href');
  var sTitre = $(this).attr('title');
  var sIframe = '<object type="application/pdf" data="'+sUrl+'" width="100%" height="500">Aucun support</object>';
  $.twModalPDF({
    title:sTitre,
    message: sIframe,
    closeButton:true,
    scrollable:false
  });
  $('#oModalPDF').on('hidden.bs.modal', function (e) {
    console.log('e', e);
    $('#Finish').modal('show');
    $(this).off('hidden.bs.modal'); // Remove the 'on' event binding
  });
  return false;

});

我的jsfiddle示例

update

如果您使用PHP解决处理程序脚本标签,则可以尝试此方法。

您在模态初始化中仍然有$('#oModalPDF').on('hidden.bs.modal', ... )处理程序,但您也有:

window.dialogOnCloseHandler = null;

在关闭事件结束后存储您的呼叫搜索。这是不良模式将某些内容存储在全局范围中。因此,您应该对您的案件进行重构回调存储。

$(document).ready(function(){  
window.dialogOnCloseHandler = null;
$('.show-pdf').on('click',function(e){
  e.preventDefault();
  var sUrl = $(this).attr('href');
  var sTitre = $(this).attr('title');
  var sIframe = '<object type="application/pdf" data="'+sUrl+'" width="100%" height="500">Aucun support</object>';
  $.twModalPDF({
    title:sTitre,
    message: sIframe,
    closeButton:true,
    scrollable:false
  });
 $('#oModalPDF').on('hidden.bs.modal', window.dialogOnCloseHandler);
});

}(

您的关闭事件后回调脚本:

 $(document).ready(function(){
   window.dialogOnCloseHandler = function (e) {
      console.log('e', e);
      $('#Finish').modal('show');
      $(this).off('hidden.bs.modal'); // Remove the 'on' event binding
  };

}(;

在这里您只需使用处理程序更新window.dialogOnCloseHandler属性。

jsfiddle示例

我认为您应该在隐藏模态之前聆听hidden.bs.modal事件。现在,您正在隐藏模态,然后开始侦听隐藏事件,因为模式已经被隐藏了。

$('.modal').click(function(e){
    e.preventDefault();
    $('#oModalPDF')            
        .on('hidden.bs.modal', function (e) {
            $('#Finish').modal('show');
            $(this).off('hidden.bs.modal'); // Remove the 'on' event binding
        })
        .modal('hide');
});

我不知道您是否在为动画,但是如果没有,您甚至不必听一个事件,您可以简单隐藏模态并在单击时打开新的:

$('.modal').click(function(e){
    e.preventDefault();
    $('#oModalPDF').modal('hide');
    $('#Finish').modal('show');
});

我尚未完全测试过,但我相信您不需要添加代码

$('#oModalPDF').modal('hide').on('hidden.bs.modal', function (e) {
    $('#Finish').modal('show');
    $(this).off('hidden.bs.modal'); // Remove the 'on' event binding
});

在您写的$('.modal').click事件中。

$('#modalID1')    //the modal id which upon closing triggers the next modal
    .on('hidden.bs.modal'){
        $('#Finish').modal('show');
    }

这将要做的是,一旦上一个模态关闭,它将触发下一个模式的表演事件。

最新更新