Bootstrap 中的模态对话框

许多 CSS 工具包(和 Javascript)都包含用于创建模式对话框的样式。此示例展示了如何将 HTMX 与 Bootstrap 提供的原始 JavaScript 结合使用。

我们从一个触发对话框的按钮开始,以及标记底部的 DIV,对话框将在其中加载:

<button
    hx-get="/modal"
    hx-target="#modals-here"
    hx-trigger="click"
    data-bs-toggle="modal"
    data-bs-target="#modals-here"
    class="btn primary">Open Modal</button>

<div id="modals-here"
    class="modal modal-blur fade"
    style="display: none"
    aria-hidden="false"
    tabindex="-1">
    <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
        <div class="modal-content"></div>
    </div>
</div>

单击此按钮时使用 GET 请求来处理 /modal 的结果。此文件的内容将添加到 #modals-here DIV 下的 DOM 中。

服务器以 Bootstrap 标准模式的稍微修改版本进行响应

<div class="modal-dialog modal-dialog-centered">
  <div class="modal-content">
    <div class="modal-header">
      <h5 class="modal-title">Modal title</h5>
    </div>
    <div class="modal-body">
      <p>Modal body text goes here.</p>
    </div>
    <div class="modal-footer">
      <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
    </div>
  </div>
</div>
Server Requests ↑ Show

演示