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>
以上是在HTML中,当页面卸载时执行脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!