Bootstrap modal appearing under background

前端 未结 30 980
离开以前
离开以前 2020-11-22 17:09

I have used the code for my modal straight from the Bootstrap example, and have included only the bootstrap.js (and not bootstrap-modal.js). However, my modal is appearing u

30条回答
  •  清酒与你
    2020-11-22 17:38

    I got it to work by giving a high z-index value to the modal window AFTER opening it. E.g.:

    $("#myModal").modal("show");
    $("#myModal").css("z-index", "1500");
    

提交回复
热议问题