无法读取未定义的'fn'属性?

时间:2018-09-21 21:45:13

标签: javascript html http-status-code-404

在我的github页面上获取这些错误代码。我将这些作为加载脚本的顺序:

<script src="../../node_modules/jquery/dist/jquery.js"></script>
<script src="../../js/bootstrap.min.js"></script>
<script src="../../js/index.js"></script>

以下是错误消息:

GET https://tmolano.github.io/CareerMod4/node_modules/jquery/dist/jquery.js 404 ()
index.html:115 GET https://tmolano.github.io/CareerMod4/node_modules/popper.js/dist/popper.min.js 404 ()
util.js:56 Uncaught TypeError: Cannot read property 'fn' of undefined
    at util.js:56
    at util.js:10
    at bootstrap.min.js:6
    at bootstrap.min.js:6
(anonymous) @ util.js:56
(anonymous) @ util.js:10
(anonymous) @ bootstrap.min.js:6
(anonymous) @ bootstrap.min.js:6

在这里显示我的页面:https://tmolano.github.io/CareerMod4/

除了加载顺序之外,还有什么可能导致这种情况?

1 个答案:

答案 0 :(得分:3)

此错误的可能原因:

  

未捕获的TypeError:无法读取未定义的属性'fn'

  1. 对文件地址的引用无效或缺少文件(您的情况)。
  2. 对Jquery的重复引用。
  3. 在第三方库中重写Jquery的$符号。
  4. 在插入Jquery之前使用Jquery函数(不是您的情况)。
  5. 对不带on的jquery中的WINDOW元素使用不赞成的语法进行加载,错误和卸载