Open an Modal window from Navigation bar

前端 未结 4 1738
囚心锁ツ
囚心锁ツ 2020-12-19 02:02

I\'m trying to open a modal window from navigation bar. I\'ve followed some good tutorials and once I pressed my link a modal opened, problem is model window looks like not

4条回答
  •  眼角桃花
    2020-12-19 02:17

    I am experiencing this same issue. The only way I could fix it was by adding a jQuery click on the link in the navbar to override the bootstrap default. Like so:

    $("#navbar_register_btn").on("click",function(e){
        e.preventDefault();
        $('#basicModal').modal('show');
    })
    

    You will need to give your link in the navbar an id of "navbar_register_btn" in this case.

提交回复
热议问题