Struts2中如何使用锚点代替提交按钮?
我希望在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题。我的解决方案是使用 jQuery 序列化方法提交表单数据,以将表单数据附加到锚标记的 href 上。
请注意如何在锚标记的 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.
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.
对于使用 struts 标签的锚点,请使用此
For anchor using struts tag use this
我建议在锚标记 href 内执行 javascript:form.submit()
I'd suggest just doing a javascript:form.submit() inside your anchor tag href