Struts2-jquery-plugin运行时问题
您好,我正在使用带有 JQuery 插件的 struts 2 (http://code.google.com/ p/struts2-jquery/)。我正在尝试加载目标 div,我已加载 jar,我已将标签:
<%@ taglib prefix="sj" uri="/struts-jquery-tags" %>
放在头部,
这是脚本
<s:url id="ajaxTest" value="listDossier.action"/>
<sj:a id="link1" href="%{ajaxTest}" targets="div1">
Update Content
</sj:a>
<div id="div1">
</div>
,但脚本不无法运行,无法加载页面。 我该怎么办?
我正在使用 SITEMESH
IT,Guido
Hi I'm using struts 2 with JQuery plugin (http://code.google.com/p/struts2-jquery/). I'm trying to load a target div, i have load the jar, i've put the tag :
<%@ taglib prefix="sj" uri="/struts-jquery-tags" %>
<sj:head/>
in the head,
this is the script
<s:url id="ajaxTest" value="listDossier.action"/>
<sj:a id="link1" href="%{ajaxTest}" targets="div1">
Update Content
</sj:a>
<div id="div1">
</div>
but the script don't run, i can't load the page.
How can i do?
I'm Using SITEMESH
IT, Guido
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
代替如果您可以发布您的 jsp 那么它会很有帮助。
Use
<sj:div>
in place of<div>
also if you could post your jsp then it would be helpful.