bootstrap modal not working at all

前端 未结 9 2188
有刺的猬
有刺的猬 2021-01-12 16:48

I know this question has been asked hundred of times before and I\'ve been through them but those couldn\'t fix my case :s

This is my code so far

            


        
9条回答
  •  梦毁少年i
    2021-01-12 17:06

    Before posting my complete solution i would like to know , have you initialized your modal before loading it. Initialization:-

    $(function(){
    $('#myModal').modal({
       show:true,
       backdrop:'static'
    });
     //now on button click
      $('#myModal').modal('show');
    });
    

提交回复
热议问题