JavaScript 中 onunload 事件有什么用?
当你卸载(或刷新)页面时,卸载事件就会触发。你可以尝试运行以下代码,了解如何在 JavaScript 中实现 onunload 事件。
举例
<!DOCTYPE html> <html> <body onunload="newFunc()"> <p>Close the page and see what happens!</p> <p>This event may give unexpected results.</p> <script> function newFunc() { alert("Thank you!"); } </script> </body> </html>
广告