Bootstrap 模式未完全显示

发布于 2025-01-11 11:59:00 字数 417 浏览 0 评论 0原文

打开模式时,我正在开发前端应用程序

当我使用$("#bootstrap_modal").modal({show:true});

它在浏览器屏幕中显示模式: 输入图片此处描述

该图像显示了我的浏览器应用程序窗口的顶部部分。

更新: 输入图片此处描述

有什么想法吗?

I am working on a front end application here when I open a modal with

$("#bootstrap_modal").modal({show:true});

it shows the modal in the browser screen in :
enter image description here

the image shows the top section of my browser app window.

Updated :
enter image description here

Any Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朱染 2025-01-18 11:59:00

没有代码我们只能猜测。

一般来说,你只需要需要Bootstraps CSS + JS,并使用以下代码:

Modal:

<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

按钮触发模态:

<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
  Launch demo modal
</button>

参考

如果此演示未运行,请检查您的 JS 使用情况。

Without the code we just can guess.

In general you only need to require Bootstraps CSS + JS, and use the following code:

Modal:

<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

Button to trigger the modal:

<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
  Launch demo modal
</button>

Reference

If this demo isn't running please check your JS Usage.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文