前端已死? Bootstrap--JS-jQuery
前端已死的说法通常是一个调侃或者用来表达对某一事物过度争议或不再流行的表示。Bootstrap、jQuery 和 JavaScript 都是前端开发中非常重要的工具,并且都在持续更新,广泛被使用。
如果你指的是“前端已死”这个调侃,并想知道如何在前端项目中使用 Bootstrap 和 jQuery,以下是简要的解决方案和示例代码:
- 在 HTML 中引入 Bootstrap CSS 文件:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
- 在 HTML 中引入 jQuery 库:
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
- 引入 Bootstrap 的 JavaScript 插件(依赖 jQuery):
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
- 使用 Bootstrap 提供的 CSS 类和 JavaScript 插件来构建页面:
<div class="container">
<button class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
打开模态框
</button>
<!-- 模态框 -->
<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">
<h5 class="modal-title" id="exampleModalLabel">模态框标题</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="关闭">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
在这里添加模态框内容。
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-primary">保存更改</button>
</div>
</div>
</div>
</div>
</div>
确保按照正确的顺序引入依赖(jQuery 先于 Bootstrap JS),以上代码展示了如何使用 Bootstrap 创建一个按钮触发模态框的简单示例。
评论已关闭