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.
我有一个带有指向弹出窗口的链接的页面,在此弹出窗口中是指向另一个弹出窗口的链接。当我在第二个弹出窗口中提交时,它会返回到原始网页。我怎样才能回到上一个弹出窗口。
我试过history.go(-1)了,但这让我回到了原来的网页。
history.go(-1)
window.opener 将为您提供开放源代码。
因此,您可以执行以下操作:
window.opener.focus();使该弹出窗口前进。
window.opener.focus();