Bootstrap 模态滚动条在触发另一个模态后出现和消失

Bootstrap modal scroll bar appears and disappears after triggering the another modal

我尝试了很多东西,但 none 奏效了。因此发布问题,如果发现重复,我很抱歉。

我对 bootstrap 模态滚动有疑问,情况如下:

我不明白为什么滚动条一开始是可见的,后来又消失了。我尝试了几件事,但 none 成功了。

我在样式表中为模式编写了以下样式:

.modal { overflow: visible; }
.modal-body { overflow-y: visible !important; }

我的Modal-1 headers如下:

<div class="modal fade" id="EventModalForm">
    <div class="modal-dialog" style="max-height:100%; max-width:100%;">
        <div class="modal-content">
            <div class="modal-header">
            </div>
        </div>
    </div>
</div>

有人可以帮我解决这个问题吗?

添加以下样式“style="overflow-y: auto;"'后现在工作正常:

<div class="modal fade" id="EventModalForm" style="overflow-y: auto;">
    <div class="modal-dialog" style="max-height:100%; max-width:100%;">
        <div class="modal-content">
            <div class="modal-header">
            </div>
        </div>
    </div>
</div>