遇到GET http://localhost:8080/myweb/WEB-INF/js/jquery-3.4.1.js net::ERR_ABORTED 404

问题:

遇到GET http://localhost:8080/myweb/WEB-INF/js/jquery-3.4.1.js net::ERR_ABORTED 404

分析:

后来,我发现我在引用的时候是这样写的

script type="text/javascript" src="WEB-INF/js/jquery-3.4.1.js"></script>

遇到GET http://localhost:8080/myweb/WEB-INF/js/jquery-3.4.1.js net::ERR_ABORTED 404

解决:

方案一:

js文件还是放在WEB-INF/js文件夹中,但引用改为

<script type="text/javascript" src="js/jquery-3.4.1.js"></script>

即可。

方案二:

js文件放js文件夹中,如下图

遇到GET http://localhost:8080/myweb/WEB-INF/js/jquery-3.4.1.js net::ERR_ABORTED 404

上一篇:leetcode 121 买卖股票的最佳时机


下一篇:【图像融合】基于matlab图像融合评价指标【含Matlab源码 789期】