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.
我有一个场景,我需要提交multiple jsp forms带有multiple iframes按钮single submit的内容。有可能这样做吗?我尝试了各种想法,但都没有奏效。
multiple jsp forms
multiple iframes
single submit
您可以使用以下命令提交多个表单:
document.forms["your form name"].submit();
单击第一个按钮时,您可以调用一个手动为您提交所有表单的方法:)
希望这可以帮助。