我的网站的html代码是由以下bootstrap 3.3.6条目编写的。现在我想使用bootstrap 3.3.7的功能,但仅仅更改引导程序的版本并不简单。升级的最佳方法是什么?我是否需要在bootstrap 3.3.7标准之后再次编写所有代码?
答案 0 :(得分:0)
升级到新版本的最佳方法是删除旧版本的网址并添加新版本的新网址。如需更多帮助,请访问NPM文档https://docs.npmjs.com/cli/update
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!--add your css file here -->
<!--you must add the jQuery library here before the url of bootstrap/3.3.7/js/bootstrap.min.js-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
&#13;