0

JavaScript ファイルを jsp ファイルにロードしようとしています

これが私が試したことです:

<script type="text/javascript"  src="static/js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript"  src="/static/js/jquery-ui-1.10.3.custom.js"></script>

<script type="text/javascript"  src="/WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript"  src="WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>

<script type="text/javascript"  src="/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript"  src="WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>

<script type="text/javascript"  src="/USI-WEB/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript"  src="/USI-WEB/WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>

<script type="text/javascript"  src="USI-WEB/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript"  src="USI-WEB/WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"></script>

<script type="text/javascript"  src="<%=request.getContextPath() + "/static/js/jquery-ui-1.10.3.custom.js"%>"></script>
<script type="text/javascript"  src="<%=request.getContextPath() + "/static/js/jquery-ui-1.10.3.custom.js"%>"></script>

<script type="text/javascript"  src="<%=request.getContextPath() + "/WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"%>"></script>
<script type="text/javascript"  src="<%=request.getContextPath() + "WebContent/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"%>"></script>

<script type="text/javascript"  src="<%=request.getContextPath() + "/WEB-INF/static/js/jquery-ui-1.10.3.custom.js"%>"></script>
<script type="text/javascript"  src="<%=request.getContextPath() + "WEB-INF/static/js/jquery-ui-1.10.3.custom.js"%>"></script>

これは私のプロジェクト構造です

これはファイルの場所です

そして、これは私のweb.xmlです

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>USI WEB</display-name>

  <!-- Filter to set character encoding on each request -->


  <servlet>
    <servlet-name>Servlet</servlet-name>
    <servlet-class>usi.servlet.Servlet</servlet-class>
  </servlet>


  <welcome-file-list>
    <welcome-file>Servlet</welcome-file>
  </welcome-file-list>
</web-app>

このすべてで私は得る: The requested resource () is not available.

4

2 に答える 2

0

あなたはこれを試すことができます:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<script type="text/javascript"   src="<c:url value="/static/js/js/jquery-ui-1.10.3.custom.js"/>"></script>
于 2013-10-14T20:30:54.100 に答える