當文件準備卸載時,onbeforeunload 事件屬性會觸發。
您可以嘗試執行以下程式碼來實作 onbeforeunload 屬性 −
<!DOCTYPE html> <html> <body onbeforeunload = "return display()"> <p>Close this window or press F5.</p> <script> function display() { return "Wanna stay here or leave?"; } </script> </body> </html>
以上是當HTML文件即將被卸載時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!