gpt4 book ai didi

java - 如何在 Struts2 中使用 anchor 而不是提交按钮?

转载 作者:行者123 更新时间:2023-11-30 11:59:41 25 4
gpt4 key购买 nike

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

请帮忙

最佳答案

我遇到了同样的问题。我的解决方案是使用 jQuery 序列化方法提交表单数据,以将表单数据附加到 anchor 标记的 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 结合使用的示例 here .

关于java - 如何在 Struts2 中使用 anchor 而不是提交按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2431086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com