在 javascript 中使用 jquery 加载 Struts 2 操作
我正在尝试使用 jquery 来定位 div 并使用加载内容的 struts 操作,从 javascript 重新加载目标 div。
有谁知道该怎么做? 问题是我如何使用(javascript)jquery 来做到这一点。
BR,托比亚斯
I'm trying to reload a target div from a javascript by using jquery to target the div and a struts action that loads the content.
Does anyone know how to do this?
The problem is how I use (javascript) jquery to do this.
BR, Tobias
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 jQuery
.load()
函数。现在明白了,您应该确保您的操作的响应不是一个真正完整的 HTML 页面,因为您无法将完整的 HTML 文档填充到
中。如果您有一个完整的文档,并且您只需要其中的一部分(例如,包含在 ID 为“usefullStuff”的
中的块),您可以执行以下操作:
The simplest thing to do is use the jQuery
.load()
function.Now understand that you should make sure that the response from your action is a page that's not really a complete HTML page, because you can't stuff a complete HTML document inside a
<div>
. If you have a complete document, and you only want a portion of it (say, a block contained within a<div>
with id "usefullStuff"), you can do this:或者使用 Struts2 jQuery 插件:
Or with Struts2 jQuery Plugin: