JavaScript 参考手册
onbeforeunload 事件
JavaScript 中, 使用 addEventListener() 方法
源代码:
点击运行 »
<p>该实例演示了如何使用 addEventListener() 方法向 body 元素添加 "onbeforeunload" 事件。</p> <p>关闭当前窗口,按下 F5 或点击以下链接触发 onbeforeunload 事件。</p> <a href="https://www.mifengjc.com">点击调整到蜜蜂教程</a> <script> window.addEventListener("beforeunload", function(event) { event.returnValue = "我在这写点东西..."; }); </script>
运行结果:
点击运行 »