# 如何安装第三方插件,比如:jQuery.js 、Bootstrap.js、 Bootstrap.css

第一步安装:
>npm install bootstrap --save
>npm install jQuery --save
//注意:拿到这个工程后,除了 npm install外,还要安装bootstrap和jquery (因为安装时没有用--save)


第二步导入:
注意导入方法,导入到angular.json 文件的styles 和scripts
导入bootstrap.min.css 相对路径到styles中
导入bootstrap.min.js、jquery.min.js到scripts中去

"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.min.js",
"node_modules/jquery/dist/jquery.min.js"],
 
做实验时出现如下错误:
Cannot read property 'fn' of undefined     at bootstrap.min.js:6
 
出现此错误是由于:1.导入方法时,没有先导入jquery的方法
                                 2.安装bootstrap时,忘了用--save保存

相关文章:

  • 2021-07-10
  • 2021-10-08
  • 2021-07-30
  • 2021-04-14
  • 2021-04-06
  • 2022-01-16
  • 2022-01-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2021-05-15
  • 2021-07-30
相关资源
相似解决方案