我想问你如何将正确的jQuery库添加到Spring MVC项目中。在src/webapp
目录中,我有resources
个文件夹。我创建了内部js
目录。然后我粘贴了下载的jQuery库。但Eclipse发现了一些错误,现在我无法运行我的项目。那么在Spring MVC项目中添加和使用正确的jQuery库的方法是什么?也许使用Maven在POM.xml
?
我已经创建了这个问题How to include the jQuery library in a Spring-MVC Eclipse project,但它没有解决我的问题。
答案 0 :(得分:4)
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
把它放在你的jsp页面的头部。来自here。或者,如果您想手动提供自己的jquery文件,请将此添加到应用程序上下文(并在yr webapp文件夹中创建javascript目录):
<mvc:resources location="/javascript/" mapping="/javascript/**" />
然后在jsp
<c:url var="jq" value="/javascript/jquery.js" />
<script type="text/javascript" src="${jq}"></script>
答案 1 :(得分:1)
使用google cdn:
<script type="text/javascript src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ></script>