Bootstrap: Open Another Modal in Modal

后端 未结 21 1017
难免孤独
难免孤独 2020-11-27 11:28

So, I\'m using this code to open another modal window in a current opened modal window:



        
21条回答
  •  盖世英雄少女心
    2020-11-27 11:32

    Close the first Bootstrap modal and open the new modal dynamically.

    $('#Modal_One').modal('hide');
    setTimeout(function () {
      $('#Modal_New').modal({
        backdrop: 'dynamic',
        keyboard: true
      });
    }, 500);
    

提交回复
热议问题