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.
当有人单击按钮时,将出现一个弹出表单。我正在尝试做但不知道如何解决它。
您可以通过 javascript 打开新的弹出窗口表单,因为您必须 使用按钮的 onclick 事件调用以下内容
window.open(url, 'new tab', 'width=700,height=500');
您也可以在表单提交成功后关闭此弹出窗口,如下所示
window.close(url);
在网址中,您必须添加您的网址。如果这不起作用,请分享更多信息。谢谢你