可能的原因是Bootstrap需要jQuery,而Angular通常不使用jQuery。因此,在使用Bootstrap时,需要手动引入jQuery库,才能让Bootstrap的JavaScript代码起作用。
以下是可能的
可以使用以下命令来安装它们:
npm install bootstrap jquery --save
在styles(样式)数组中添加Bootstrap的CSS文件:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
]
在scripts(脚本)数组中添加jQuery和Bootstrap的JS文件:
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]
例如,在使用模态框时,按照以下方式使用:
注意