在 HTML 中为页面卸载时执行脚本?
unloaded 属性会在网页卸载时触发。你可以尝试运行以下代码在 HTML 中实现 unloaded 属性 −
示例
<!DOCTYPE html> <html> <body onunload = "display()"> <h2>Tutorialspoint</h2> <h3>Simply Easy learning</h3> <script> function display() { alert("Bye!"); } </script> </body> </html>
广告