当浏览器进程被终止时如何运行javascript?
我在 html body 标记中定义了 onUnload="cleanup()" 。 javascript中的cleanup()方法是
function cleanup() {--clean up session--}.但是当浏览器通过使用任务管理器终止进程而终止时,我想执行与cleanup相同的操作。这怎么能做到呢?
I hav onUnload="cleanup()" defined in my html body tag.
The cleanup() method in javascript is
function cleanup()
{--clean up session--}.
But when the browser is terminated by killing the process using task manager, I want to do the same action as cleanup. How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。如果进程被强行终止,那么没有人会关心你的脚本。
You cannot. If the process is forcefully killed, nobody cares about your scripts.