Bootstrap 4:如何在没有jQuery / minimal bootstrap.js的情况下使用NavBars?

时间:2017-07-15 21:14:52

标签: bootstrap-4

我们网站上的绝大多数网页只会使用GRID和NAVBAR。我们在每个页面上加载所有jQuery和bootstrap.min.js是没有意义的。

事实上,唯一需要的JS是用于处理移动请求中NAVBAR打开/关闭的js。

有没有人创建过一个小的.js来处理这个问题?

我找到了一堆Bootstrap 3,但我没有看到Bootstrap 4。

由于

2 个答案:

答案 0 :(得分:0)

是的!您可以使用此:

https://thednp.github.io/bootstrap.native/v4.html

使用CDN

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/bootstrap.native@2.0.15/dist/bootstrap-native-v4.min.js"></script>

使用npm

运行命令:

npm install https://github.com/thednp/bootstrap.native

然后导入:

var bsn = require('bootstrap.native/dist/bootstrap-native-v4');

答案 1 :(得分:-1)

Bootstrap需要jQuery,并且没有避免这种情况。

作为shown in the docs,您只需使用所需的Navbar组件(collapse.js和utils.js)。