jQuery 不支持 struts2 操作

发布于 2024-09-29 02:09:59 字数 654 浏览 1 评论 0原文

是否必须使用 struts2-jquery 插件才能在 struts2 应用程序中运行 jQuery 代码?

我正在开发 struts2 Web 应用程序
jQuery 文件:WebContent/js/jquery-1.4.3.js
JSP 页面位置:WebContent/pages/*.jsp

TDFindYourQuote.jsp 是应用程序的默认页面:
我在 TDFindYourQuote.jsp 中有一个简单的脚本
<代码> [脚本类型=“text/javascript”src=“../js/jquery-1.4.3.js”][/script]
[脚本类型=“text/javascript”]
$(文档).ready(函数(){
Alert('我现在在 JSP 代码中!!');
});

当我访问 url 时执行上述脚本:
localhost:8081/ CloseQuote/pages/THDFindYourQuote.jsp

当我访问以下 URL 时,相同的脚本不起作用:
localhost:8081/ CloseQuote/

我在其他 JSP 中遇到同样的问题。当我使用完整路径 URL 访问 jsp 时,该脚本有效。当我使用操作 url 访问 jsp 时它不起作用..请帮助

Is it a must to use the struts2-jquery plugin to be able to run jQuery code in a struts2 application?

I am working on a struts2 web app
jQuery file: WebContent/js/jquery-1.4.3.js
JSP pages location: WebContent/pages/*.jsp

THDFindYourQuote.jsp is the default page of the application:
I have a simple script in THDFindYourQuote.jsp

[script type="text/javascript" src="../js/jquery-1.4.3.js"][/script]
[script type="text/javascript"]
$(document).ready(function(){
alert('I am in the JSP code now!!');
});

The above script is executed when i access the url:
localhost:8081/ CloseQuote/pages/THDFindYourQuote.jsp

the same script does not work when I access the URL:
localhost:8081/ CloseQuote/

I am having the same problem in other JSPs. The script works when i access the jsp using the full path URL. It does not work when I access the jsp with action urls ..please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

×纯※雪 2024-10-06 02:09:59

是否必须使用 struts2-jquery 插件才能在 struts2 应用程序中运行 jQuery 代码?

不。我不使用该插件,而是在所有 Struts2 应用程序中使用 jQuery。只需将其包含在 UI 层中,就像在 PHP 应用程序、Ruby 应用程序等中一样。

看起来问题在于您正在使用相对 URL。尝试使用绝对值。

Is it a must to use the struts2-jquery plugin to be able to run jQuery code in a struts2 application?

No. I don't use that plugin and I use jQuery in all of my Struts2 applications. Just include it in the UI layer the same as you would in a PHP application, a Ruby application, etc.

It looks like the problem is that you are using relative URLs. Try using absolute ones.

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