我使用Spring MVC。我有一個動態的Web項目的EclipseSpring MVC如何從jsp加載js
結構文件夾是
我有以下的JSP actualizarCorreo.jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html>
<head>
<title>EusurveyAdmin menu princiapl</title>
<script type="text/javascript" src="/resources/js/properties.js"></script>
<script type="text/javascript">
function pruebaB()
{
alert('en prueba');
}
</script>
</head>
<body>
<c:set var="pageNumber" value="${pageNumber}" />
<table class="actualizarCorreos">
<tbody>
<a href="#" onclick="prueba()"; return false;">
<input type="radio" onclick="prueba()" class="check" id="id1"
name="id1" value="true" />
<spring:message code="label.ModificarCorreos" />
</tbody>
</table>
</body>
在這個JSP我加載另一個JS
<script type="text/javascript" src="/resources/js/properties.js">
這是js路徑WebContent/resources/JS。
properties.js是
alert('cargado properties');
function checkConfirmationPage()
{
alert('en check');
if ($("#conflink").is(":checked"))
{} else {};
}
function prueba()
{
alert('en prueba');
}
我通話功能prueba從actualizarCorreo.jsp點擊
<input type="radio" onclick="prueba()" class="check" id="id1"
name="id1" value="true" />
<spring:message code="label.ModificarCorreos" />
我沒有看到警告信息功能prueba一個單選按鈕時。
這是什麼錯誤?
我試圖另一個路徑和我得到消息錯誤<未發現與URI [/EusurveyAdminB/correos/corregir/resources/js/properties.js]在DispatcherServlet的名爲'HTTP請求映射eusurveyadmin'>我認爲路徑是正確的 – user3712581
我建議另一種選擇。請嘗試讓我知道。 –