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.
我们有一个用于支持的聊天脚本。我想知道在用户关闭或尝试使用 JS 关闭聊天页面后,是否可以在当前窗口或父窗口中重定向到调查页面?我做了一些研究,但我能找到的只是重新加载父母或警报的东西。
谢谢
您也可以查看 onbeforeunload -请参见此处- 尽管我不知道它是否比 onunload 得到更好的支持。两者都要记住的一件事是,它指的是卸载文档而不是窗口。因此,关闭窗口并不是触发它们的唯一因素——例如导航到另一个页面。
我认为您可以unload()在 javascript 中使用事件。当用户尝试关闭浏览器时触发该事件。请参阅此处的链接
unload()