“Öffnen Sie den Modal Event Bootstrap” Code-Antworten

Bootstrap -Modal

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
  <div class="modal-dialog modal-dialog-centered" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">×</span>
        </button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
AhmedElkaiass

So zeigen Sie Bootstrap -Modal

<script>
    var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
    myModal.show()
</script>
MD SAIFUL ISLAM

Öffnen Sie den Modal Event Bootstrap

//This event fires immediately when the show instance method is called. 
$('#myModal').on('show.bs.modal', function (e) {
  // do something...
});

//This event is fired when the modal has been made visible to the user
$('#myModal').on('shown.bs.modal', function (e) {
  // do something...
});

//This event is fired immediately when the hide instance method has been called.
$('#myModal').on('hide.bs.modal', function (e) {
  // do something...
});

//This event is fired when the modal has finished being hidden
$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
})
Yousef Qaoud

Ähnliche Antworten wie “Öffnen Sie den Modal Event Bootstrap”

Fragen ähnlich wie “Öffnen Sie den Modal Event Bootstrap”

Weitere verwandte Antworten zu “Öffnen Sie den Modal Event Bootstrap” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen