无法在 jsp 中包含 jquery 1-4.4

发布于 2024-10-13 07:18:39 字数 1182 浏览 1 评论 0原文

我在 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.
alt text

alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

×纯※雪 2024-10-20 07:18:39

通过在浏览器中访问 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文