jQuery js文件未加载

时间:2014-07-19 16:53:50

标签: java javascript jquery spring servlets

为什么我的自定义js正在加载但是jquery-1.11.1.js没有加载,尝试将它放在与我的自定义js(StartPage.js)相同的文件夹中,但仍然在firebug控制台上显示未找到。

<html>
<head>
    <title>title</title>
<script type="text/javascript" src="${pageContext.request.contextPath}/jquery-1.11.1.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/StartPage.js"></script>
</head>
<body>
    <%@ include file="/html/StartPage.html"%>
</body>
</html>

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

我的坏......

我通过右键单击eclipse中的index.jsp来运行应用程序,这就是为什么它在解析js文件路径时感到困惑,而StartPage.js是从Spring容器加载的,因为/ StartPage是从@RequestMapping解决的来自控制器。

现在我在服务器上运行整个项目,并解析所有js文件的路径(使用$ {PageContext.request.contextPath})。

答案 1 :(得分:0)

尝试此路径并尝试清除浏览器缓存

你错过了路径中的“js”尝试以下路径

 ${pageContext.request.contextPath}/js/jquery-1.11.1.js