Firefox:Bootstrap的JavaScript需要jQuery

时间:2016-06-23 13:25:13

标签: jquery html css twitter-bootstrap firefox

我在RaspberryPi3上托管自定义页面作为家庭仪表板。它在Chrome和移动浏览器中渲染得很好,但在桌面上的Firefox中无效。

以下是我在控制台中收到的错误:

Error: Bootstrap's JavaScript requires jQuery

但是,我在Bootstrap之前加载jQuery。

<!DOCTYPE html>
<html>
<head>
...
  <link rel="stylesheet" href="dist/css/bootstrap.min.css">
...
  <script src="dist/jquery-2.2.4.min.js"></script>
  <script src="dist/js/bootstrap.min.js"></script>
</head><!--end head-->
...

在控制台中键入$.fn.jquery时,我会回复此信息。

TypeError: $.fn is undefined

我假设jQuery没有正确加载?同样,Chrome可以正常工作并正常呈现。任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

我认为您的问题是jQuery版本

从bootstrap中查看bower.json: https://github.com/twbs/bootstrap/blob/v3.3.6/bower.json

"dependencies": {
    "jquery": "1.9.1 - 2"
  }

尝试bootstrap站点的基本模板:

http://getbootstrap.com/getting-started/#template