1

I get this error when viewing my Bootstrap website with the FF Error Console

Error: ReferenceError: jQuery is not defined Source File: http://localhost/cap3boot/js/bootstrap.js Line: 6

All my JS files are linking to the correct directories.

Drop-down menus seem to work ok. Should I be concerned? Any ideas?

4

2 回答 2

9

在包含 bootstrap.js 之前,您需要包含 jQuery JS 文件。以后不可能了。

于 2013-08-28T19:03:35.087 回答
1

我已经解决了这个问题。这真的很简单。

HTML shim 的两个 js 文件未正确链接,导致错误。

这是之前

<script src="../assets/js/html5shiv.js"></script>
<script src="../assets/js/respond.min.js"></script>

后。固定的。

<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
于 2013-08-31T12:46:00.723 回答