1.下载jquery http://download.csdn.net/download/yangwei19680827/7454419
2.选择一个版本的jquery,例如 jquery-1.8.3.js,放入webroot目录下的适当位置,例如 webroot/res/js/jquery-1.8.3.js
3.在springMVC的xml文件(该文件可以在 WEB-INF/web.xml文件中的contextConfigLocation属性中找到)中添加以下属性
<mvc:annotation-driven/>
<html>
<head></head>
<body>
<script type="text/javascript" src="${pageContext.request.contextPath}/res/js/jquery-1.8.3.js"></script>
</body>
</html>
2.选择一个版本的jquery,例如 jquery-1.8.3.js,放入webroot目录下的适当位置,例如 webroot/res/js/jquery-1.8.3.js
3.在springMVC的xml文件(该文件可以在 WEB-INF/web.xml文件中的contextConfigLocation属性中找到)中添加以下属性
<mvc:annotation-driven/>
<mvc:default-servlet-handler/>
4.在jsp页面中引入<html>
<head></head>
<body>
<script type="text/javascript" src="${pageContext.request.contextPath}/res/js/jquery-1.8.3.js"></script>
</body>
</html>