Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在该表单之外使用提交按钮 () 提交 grails 表单 ()。我知道我们可以在 javascript 中为简单的 HTML 页面做同样的事情。我对 grails(gsp 页面)比较陌生,很难知道新标签。
提前致谢。
问候, 阿米特
您可以使用 jquery 在表单标签之外提交表单:
<button class="some-class" onclick="jQuery('#formId').submit()">Submit</button>
享受编程..