bootstrap 5 modal 根本不显示

Posted

技术标签:

【中文标题】bootstrap 5 modal 根本不显示【英文标题】:bootstrap 5 modal not display at all 【发布时间】:2021-06-06 08:20:22 【问题描述】:

引导模式未显示。我已经包含了所有必要的文件。

我已经尝试将 JS 文件移动到之前以及之前,但没有一个工作。我在 jsfiddle 上尝试了我的代码,但也无法正常工作

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">

    <title>Hello, world!</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
<!-- 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>
<a href="#" data-toggle="modal" data-target="#exampleModal">open</a>


    <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.6.0/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.min.js" integrity="sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin="anonymous"></script>
  </body>
  
</html>

【问题讨论】:

【参考方案1】:

Bootstrap 5 数据属性现在使用 bs 命名空间,因此要触发模态它将是...

&lt;a href="#" data-bs-toggle="modal" data-bs-target="#exampleModal"&gt;open&lt;/a&gt;

jQuery 也不是必须的。

Demo


注意:all Bootstrap 5 javascript components 需要 data-bs- 标记,例如导航栏、下拉菜单、折叠等...

【讨论】:

谢谢你的问题和答案。这让我发疯了。 JS 加载,没有控制台输出等...

以上是关于bootstrap 5 modal 根本不显示的主要内容,如果未能解决你的问题,请参考以下文章

Bootstrap 4 .modal('hide') 不工作

Bootstrap Modal 验证后不工作,但报警工作

python测试开发django-123.bootstrap模态框(modal)垂直居中显示

Bootstrap 4 Modal 在 Slick carousel div 内部不起作用

admin-lte+ng-bootstrap组合开发之modal弹层不显示

使用bootstrap框架建立modal对话框,对话框并不能够正常显示