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.
我正在通过jsp创建一个弹出窗口,并将弹出窗口中的一些选定值传递给jsp。在这样做时,我正在使用 servlet 即。从弹出窗口我正在调用 servlet,在 servlet 中我正在使用请求调度程序并将结果转发到 jsp。整个过程工作正常,但是从 servlet 转发到的新 jsp 被加载到同一个弹出窗口中,但我需要在父窗口中加载这个 jsp。请帮助
在您的弹出窗口调用parent.document.location='youservletname'并关闭弹出窗口 ( window.close())。
parent.document.location='youservletname'
window.close()