Struts2中如何使用锚点代替提交按钮?

发布于 2024-08-25 01:20:22 字数 63 浏览 5 评论 0原文

我希望在 struts 标签表单中使用锚点而不是提交按钮。我可以做吗?我应该如何创建它?

请帮忙

I wish to use anchors instead of submit button in a struts tag form. Can I do it ? How should i create it ?

please help

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

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

发布评论

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

评论(3

他是夢罘是命 2024-09-01 01:20:22

我遇到了同样的问题。我的解决方案是使用 jQuery 序列化方法提交表单数据,以将表单数据附加到锚标记的 href 上。

<s:url var="urlFkey" namespace="%{namespace}" action="GotoAddForeignKeyRecord" escapeAmp="false" >
  <s:param name="target" >disp${fieldName}</s:param>
  <s:param name="fkeyName" value="fkeyName"/>
  <s:param name="fkeyTableName" value="fkeyPrimaryTableName"/>
  <s:param name="recordID" value="recordID"/>
</s:url>
<s:a id="disp%{fieldName}" href="%{urlFkey}" cssClass='nyroModal' onclick="this.href = this.href + '&' + $('#%{dispTablename}saveRecord').serialize();">
   Add New <s:property value="fkeyPrimaryTableNameLabel"/>
</s:a>

请注意如何在锚标记的 onclick 事件中调用序列化方法。
您可以在我的博客此处找到更多将 Struts 与 jQuery 结合使用的示例。

I ran into this same issue. My solution was to submit the form data using the jQuery serialize method to append the form data tho the href of the anchor tag.

<s:url var="urlFkey" namespace="%{namespace}" action="GotoAddForeignKeyRecord" escapeAmp="false" >
  <s:param name="target" >disp${fieldName}</s:param>
  <s:param name="fkeyName" value="fkeyName"/>
  <s:param name="fkeyTableName" value="fkeyPrimaryTableName"/>
  <s:param name="recordID" value="recordID"/>
</s:url>
<s:a id="disp%{fieldName}" href="%{urlFkey}" cssClass='nyroModal' onclick="this.href = this.href + '&' + $('#%{dispTablename}saveRecord').serialize();">
   Add New <s:property value="fkeyPrimaryTableNameLabel"/>
</s:a>

Notice how the serialize method is called in the onclick event for the anchor tag.
You can find more examples of using Struts with jQuery at my blog here.

我乃一代侩神 2024-09-01 01:20:22

对于使用 struts 标签的锚点,请使用此

<s:url id="url" action="dummyAction">
     <s:param name="parameterName"><s:property value="parameterValue"/></s:param>
</s:url>
<s:a href="%{url}">Click here</s:a>

For anchor using struts tag use this

<s:url id="url" action="dummyAction">
     <s:param name="parameterName"><s:property value="parameterValue"/></s:param>
</s:url>
<s:a href="%{url}">Click here</s:a>
箹锭⒈辈孓 2024-09-01 01:20:22

我建议在锚标记 href 内执行 javascript:form.submit()

I'd suggest just doing a javascript:form.submit() inside your anchor tag href

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