Bootstrap 5 模式未关闭
我一定是在做一些愚蠢的事情。
我正在使用 $("#exampleModal").show();
以编程方式打开 modal
模态
打开正确。 但由于某种原因 - 我没有得到模态后面的深色叠加层 - 并且 2 个关闭按钮不起作用。
我在示例中将“fade”类应用为 ,但这意味着模式根本无法打开。
JSFIDDLE: https://jsfiddle.net/kneidels/x9zwfumt/
I must be doing something silly.
I am programmatically opening a modal
using $("#exampleModal").show();
The modal opens correctly.
But for some reason - i do not get the dark overlay behind the modal - and the 2 close buttons do not work.
I had the class 'fade' applied as in the sample, but it meant the modal would not open at all.
JSFIDDLE: https://jsfiddle.net/kneidels/x9zwfumt/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Bootstrap 5:
将
$("#exampleModal").show();
更改为$("#exampleModal").modal("show");
。它解决了你提到的一切。
请参阅下面的片段。
Bootstrap 5:
Change
$("#exampleModal").show();
to$("#exampleModal").modal("show");
.It solves everything you mentioned.
See the snippet below.