Bootstrap: Open Another Modal in Modal

后端 未结 21 973
难免孤独
难免孤独 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:34

    Try this:

    // Hide the login modal
    $('#login').modal('hide');
    
    // Show the next modal after the fade effect is finished
    setTimeout(function(){ $('#lost').modal('show'); }, 500);
    

    This simple hack works for me.

提交回复
热议问题