這是我在WEB-INF/JSP文件夾文件:不能包含js文件在我的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 /靜態 我應該這樣做我的代碼工作正常,我認爲.js文件的路徑導致問題。
在您最喜愛的瀏覽器的開發者控制檯中看到了什麼(如果有)錯誤消息? –
你爲什麼用jQuery 1.4.2編寫新代碼?這在jQuery方面很古老。對於這個問題,你爲什麼在本世紀使用ISO-8859-1?或者''元素? – Quentin
您的HTML無效,請使用[驗證器](http://validator.w3.org)。 – Quentin