jQuery 不支持 struts2 操作
是否必须使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。我不使用该插件,而是在所有 Struts2 应用程序中使用 jQuery。只需将其包含在 UI 层中,就像在 PHP 应用程序、Ruby 应用程序等中一样。
看起来问题在于您正在使用相对 URL。尝试使用绝对值。
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.