1

我的 Jsp 是,

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%-- <%@include file="include.jsp"%> --%>

<%@ taglib prefix="form" uri="../tld/spring-form.tld" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
    <script type="text/javascript" src="/jquery/jquery-1.9.1.js"></script>
    <script type="text/javascript" src="/jquery/hello.js"></script>

</head>
<body>
<%out.println("Hello") ;%>
 <form:form  commandName="person">
        Select A or B :
        <form:input path="option" id="option" />
        <input type="button" value="Ajax Submit" onclick="hello();">

        <p id = "result"></p>

</form:form> 
</body>
</html>

out.println("Hello")在浏览器中打印并且表单也显示出来。只有外部 Jquery 无法进行 JavaScript 调用。

我的调度员-Servlet 将是,

<bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/"></property>
    <property name="suffix" value=".jsp"></property>
</bean>

我的外部 hello.js 包含,

function hello(){
    alert("Hello 99");
    var val = $("#option").val();
    alert("Option : "+val);
}

我的项目结构是,

在此处输入图像描述

当我单击按钮时,我在控制台中得到了这个

Apr 8, 2013 9:03:08 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/SampleChat/jquery/hello.js] in DispatcherServlet with name 'dispatcher'
Apr 8, 2013 9:03:09 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/SampleChat/jquery/jquery-1.9.1.js] in DispatcherServlet with name 'dispatcher'

我需要调用 JavaScript 函数来获取警报。

好的答案绝对值得赞赏。

4

3 回答 3

0

检查这是否可以帮助您(将其放在您的调度程序 xml 中):

<mvc:resources location="jquery/**" mapping="jquery/**" />
于 2013-04-08T16:45:44.230 回答
0

尝试使用 c 标签库

<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core_rt'%>

和脚本标签如下

<script type="text/javascript" src='<c:url value="/jquery/jquery-1.9.1.js"></c:url>'></script>
<script type="text/javascript" src='<c:url value="/jquery/hello.js"></c:url>'></script>

还要检查您是否已将调度程序 servlet 配置为使用以下 url 模式处理所有请求

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

那么你需要添加@Dani 显示的标签

于 2013-04-08T16:55:00.620 回答
0

js文件中的madeAjaxCall ()在哪里?

我认为您正在尝试这样做

<input type="button" value="Ajax Submit" onclick="hello();">

你的代码看起来不错。

于 2013-04-08T15:34:52.933 回答