The ways to introduce Bootstrap JS include: through CDN (bootstrap.bundle.min.js is recommended); downloading related files from local; installing through npm and introducing related modules.
Bootstrap How to introduce JS
To introduce Bootstrap JS, there are the following methods:
Method 1: Use CDN
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
Method 2: Download from local
bootstrap.js
file to your project. Method 3: Through npm
npm install bootstrap
Then introduce in your code:
import * as bootstrap from 'bootstrap';
Instructions:
bootstrap.bundle.min.js
, which contains all JavaScript components. Using JS components
After introducing Bootstrap JS, you can use its JavaScript components. For example:
$('#myModal').modal()
$ ('#myTabs').tab()
$('#myCarousel').carousel()
See the Bootstrap documentation for more information on specific components.
The above is the detailed content of How to introduce js into bootstrap. For more information, please follow other related articles on the PHP Chinese website!