Can I check if Bootstrap Modal Shown / Hidden?

前端 未结 11 1484
走了就别回头了
走了就别回头了 2020-12-05 12:29

Can I check if Bootstrap Modal currently Shown / Hidden Programatically?

Like bool a = if(\"#myModal\").shown(); ?

I need true/false

11条回答
  •  醉话见心
    2020-12-05 13:22

    With Bootstrap 4:

    if ($('#myModal').hasClass('show')) {
        alert("Modal is visible")
    }
    

提交回复
热议问题