路径404问题在jsp / servlet中加载js文件

时间:2013-10-10 09:51:52

标签: jsp

enter image description here

这是项目内部的结构。

我想要的是将js文件加载到html文件

这是代码。

<!DOCTYPE html>

<html>
    <head>
        <title>Third App</title>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width,
    initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-                scalable=no"/>
    <!--  <link href="/ThirdApp/WebContent/lib/jquery/jquery.mobile-1.3.2.css" rel="stylesheet" type="text/css" />-->

    <script src="/ThirdApp/WebContent/lib/jquery/jquery-1.9.1.js"></script>
    <script src="/ThirdApp/WebContent/lib/jquery/jquery.mobile-1.3.2.js"></script>

</head>
<body>
    <div data-role="page">
        <div data-role="header">
            <h1>HOME</h1>
        </div>
        <div data-role="content">
            <!--<a href="02_menuform.html" data-role="button">MENU</a>-->
            <a href="/FirstApp/jsp/menu.jsp" data-role="button">MENU</a>
            <a href="02_busform.html" data-role="button">BUS</a>
            <a href="02_restaurantform.html" data-role="button">DELIVERY CONTACT</a>
        </div>

    </div>

</body>
</html>

我认为路径是正确的。但是,如果我运行该应用程序,它会抛出404找不到。这意味着道路是错误的。

1 个答案:

答案 0 :(得分:0)

我想你不应该把脚本保存在lib文件夹中。将所有脚本移动到另一个文件夹。它可以是WebContent/scripts/。将所有.js个文件放在那里。然后在jsp中使用jstl

<script src='<c:url value="/scripts/jquery-1.9.1.js"/>'></script>