这是我在WEB-INF / jsp文件夹下的文件:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>jQuery Hello World</title>
<script type="text/javascript" src="/WEB-INF/static/jquery-1.4.2.js"></script>
</head>
<script type="text/javascript">
$(document).ready(function(){
$("#flag").html("Hello World !! I have come from J Query World");
});
</script>
<body>
<font color="RED"> Hello World !! I have come from plain world</font>
<font color="BLUE"> <div id="flag"></div></font>
</body>
</html>
我的jquery文件在WEB-INF / static下 我应该怎么做才能使我的代码正常工作,我认为.js文件的路径导致了问题。
答案 0 :(得分:1)
WEB-INF用于保存应用程序的私有文件,客户端无法访问这些文件。
将您的JS移动到可访问的位置。
答案 1 :(得分:0)
问题是你的jsp文件在哪里。
正如你所说,你的jsp的路径是:WEB-INF / jsp
所以你的js路径应该是这样的:src =“../ static / jquery-1.4.2.js”
试试这个,我相信它会奏效。 如果它不会尝试src =“../ WEB-INF / static / jquery-1.4.2.js”,否则在新状态下添加注释。