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中文網其他相關文章!