如何根据iframe大小调整引导模式的大小?

时间:2019-02-12 15:34:01

标签: javascript html css iframe

实际上,我有一个iframe页面,在该页面中我从数据库中的表中加载了一些数据,因此iframe的高度会有所不同。

就像现在模态可以很好地加载iframe一样,如果它的高度大于300px,则会出现滚动条,但是问题是,当内容小于300px时,就像您在屏幕上看到的那样,有很多白色空间。

enter image description here

因此,我可以通过设置最大高度来比较滚动条,从而删除空白并根据iframe的高度调整模态的大小。

这是模式代码:

  <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
                <div class="modal-header bg-light">
                    <h5 class="modal-title" id="exampleModalLabel">User update: </h5>
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true">&times;</span>
                    </button>
                </div>
                 <div id="body" class="modal-body mb-0 p-0">

                    <div class="embed-responsive z-depth-1-half" style="height: 100%; max-height:300px;">
                        <iframe id="frame" class="embed-responsive-item" src="user.aspx"></iframe>
                    </div>

                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-primary">Save</button>
                </div>
            </div>
        </div>
    </div>

1 个答案:

答案 0 :(得分:0)

移除高度:100%并添加

#body {
    max-height:300px;
    overflow-y:scroll;
}

我希望这会起作用。