在Angular 9中,要使Bootstrap的折叠面板起作用,你需要执行以下步骤:
npm install bootstrap jquery --save
angular.json
文件的styles
数组中引入Bootstrap的CSS文件。例如:"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css"
]
angular.json
文件的scripts
数组中引入Bootstrap的JavaScript文件和jQuery文件。例如:"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]
This is the content of the collapse panel.
这样就能使Bootstrap的折叠面板在Angular 9中起作用了。如果问题仍然存在,你可能需要检查浏览器的开发者工具是否有任何错误或警告,并确保你的代码没有其他冲突或错误。