在IE中弹出模态窗口时,Onchange事件在后台页面中不起作用

时间:2016-10-28 19:54:39

标签: jquery coldfusion bootstrap-modal

我有一个ColdFusion页面和一个Bootstrap页面。在jQuery on ready函数中,我试图获得具有活动背景的Bootstrap模态窗口,以便用户可以在Background和Modal窗口页面上工作。我在“背景”页面上有几个字段,只要用户选项卡在“背景”页面中的字段外,就会触发onChange事件。但在我的场景中,此事件并未在IE中启动,它在Firefox和Chrome中运行良好。这是下面的代码。 模态窗口页面:

<div id="getCashFlowModal" class="modal fade" role="dialog" data-backdrop="static" style="height:50%;width:39%">
  <div class="modal-dialog modal-sm"  style="width:auto">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">&times;</button>
        <h5 class="modal-title">Project Cost Summary</h5>
      </div>
      <div class="modal-body">
</div>
  </div>
</div>

jQuery OnReady:

$("#CommonCashFlow").load('CashFlowModalWindow.cfm', function() {
    $("#getCashFlowModal").modal('show');});
    $('.modal-backdrop').removeClass("modal-backdrop");   
    $("#getCashFlowModal").draggable({
       handle: ".modal-header"
    });
});

0 个答案:

没有答案