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.
我想做以下事情。
我有一个表单,我将提交给我的预订引擎,并希望在可能的情况下在新页面中或使用 Div 显示结果,就像基本上如果用户单击提交按钮它显示 Iframe 或其他页面一样。
我是这方面的新手。
在您的form-tag 中,尝试添加一个target属性:
form
target
_blank
如:
<form method="post" action="bookUrl" target="_blank">...</form>
或者
<iframe name="formFrame"></iframe> <form method="post" action="bookUrl" target="formFrame">...</form>