Bootstrap 5 模态未关闭

Bootstrap 5 modal not closing

我一定是在做傻事。

我正在使用 $("#exampleModal").show();

以编程方式打开 modal

模式正确打开。 但出于某种原因 - 我没有在模态后面看到深色覆盖 - 并且 2 个关闭按钮不起作用。

我将 class 'fade' 应用为 in the sample,但这意味着模态框根本无法打开。

JSFIDDLE:https://jsfiddle.net/kneidels/x9zwfumt/

给你...

$("#exampleModal").show(); 更改为 $("#exampleModal").modal("show");。它解决了您提到的所有问题。

查看分叉的 JSFiddle 片段 here