Bootstrap JS 的引入方式包括:通过 CDN(推荐使用 bootstrap.bundle.min.js);从本地下载相关文件;通过 npm 安装,并引入相关模块。
Bootstrap 如何引入 JS
要引入 Bootstrap JS,有以下几种方法:
方法 1:使用 CDN
<code class="html"><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script></code>
方法 2:从本地下载
bootstrap.js
文件添加到你的项目中。方法 3:通过 npm
<code class="shell">npm install bootstrap</code>
然后在你的代码中引入:
<code class="js">import * as bootstrap from 'bootstrap';</code>
说明:
bootstrap.bundle.min.js
,其中包含了所有 JavaScript 组件。使用 JS 组件
引入 Bootstrap JS 后,你就可以使用其 JavaScript 组件。例如:
$('#myModal').modal()
$('#myTabs').tab()
$('#myCarousel').carousel()
请参阅 Bootstrap 文档以获取有关特定组件的更多信息。
以上是bootstrap怎么引入js的详细内容。更多信息请关注PHP中文网其他相关文章!