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适用于此的 javascript 对象
history
function goBack() { window.history.go(-2) }
在 JavaScript 中,history.go(-1);也会有同样的效果。
history.go(-1);