Bootstrap Modal doesn't show

前端 未结 6 1461
不知归路
不知归路 2021-01-18 02:02

I wanted to test out Bootstrap\'s modal element and created a little test page. But nothing shows up and I\'m wondering why, any clues? I got the source from the bootstrap p

6条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-18 02:24

    In my case the bootstrap model was not showing up when i did this

    $('#myModal').show();
    

    But i modified above piece of code to the one below, then it worked

    $('#myModal').modal('show');
    

提交回复
热议问题