单击按钮后,模态自动关闭

时间:2018-07-07 13:57:07

标签: bootstrap-modal

我想在MySQL和PHP的循环中包含模态表单,但是每次单击按钮时,它都会自动关闭,而无需单击X按钮。下面是我使用过的代码,我只是复制了我认为可能存在问题的代码,而不是整个代码查询。

     echo '<td class="table-striped"> <button type="button"  class="btn btn- 
     primary" data-toggle="modal" data-target="#exampleModal'.$order_id.'">' 
      . $payment_status .'</button> </td>';  

      <div class="modal fade" id="exampleModal'.$order_id.'" tabindex="-1" 
      role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">


   <script type="text/javascript">
   $(window).load(function(){        
   $('#exampleModal<?php echo $order_id ?>').modal('show');
    });
   </script>

0 个答案:

没有答案