无法在 jsp 中包含 jquery 1-4.4
我在 jsp 页面中使用 jquery 版本 1-4.4。
我的 Internet Explorer 中出现以下警告框。
这是我的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">
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(event) {
alert("Thanks for visiting!");
});
});
$(document).ready(function() {
alert("jquery version 1.4.4");
});
</script>
<title>Insert title here</title>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
但同样的 cod 与 jquery 版本 1.3.2 一起运行。
为什么它不能与 1.4.4 版本一起使用? 即使它不适用于 jquery 1.3.2 更高版本。
帮帮我吧!
i am using jquery version 1-4.4 in my jsp page.
following alert box appear in my Internet explorer.
this is my jsp page code.
<%@ 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">
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(event) {
alert("Thanks for visiting!");
});
});
$(document).ready(function() {
alert("jquery version 1.4.4");
});
</script>
<title>Insert title here</title>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
but the same cod runing with jquery version 1.3.2.
why it is not working with version 1.4.4?
even it is not working with the jquery 1.3.2 greater version.
help me out!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过在浏览器中访问 js/jquery-1.4.4.min.js 确保该文件可访问。
如果不是,那么您可能需要做的只是更新文件的权限。
Ensure that the file is accesible by visiting the js/jquery-1.4.4.min.js in your browser.
If it is not then simply updating the file's permissions is all you will probably need to do.