“Bootstrap Modal Shide and Show” Ответ

скрыть начальную загрузку модальной jQuery

$(document).ready(function(){
        $(".btn").click(function(){
            $("#myModal").modal('hide');
        });
});
Vivacious Vendace

Bootstrap Modal Shide and Show

$('#myModal').modal('hide');
$('#myModal').modal('show');
Mysterious Macaque

Bootstrap Modal On Hide Event

$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
});
Rouani Ayoub

скрыть начальную загрузку модальной jQuery

$(() => {
  $(".btn").on('click', function(){
    $("#myModal").modal('hide');
  });
});
Matteoweb

Bootstrap 4 модальное скрытое событие

/* This event is fired when the modal has finished being hidden from the user 
 * (will wait for CSS transitions to complete).
 */
$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
})
Strange Squirrel

Ответы похожие на “Bootstrap Modal Shide and Show”

Вопросы похожие на “Bootstrap Modal Shide and Show”

Больше похожих ответов на “Bootstrap Modal Shide and Show” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования