當您關閉網頁瀏覽器視窗時,已解除安裝屬性就會觸發。您可以嘗試執行以下程式碼來在 HTML 中實作卸載屬性 -
<!DOCTYPE html> <html> <body onunload = "display()"> <h2>Tutorialspoint</h2> <h3>Simply Easy learning</h3> <script> function display() { alert("Bye!"); } </script> </body> </html>
以上是在HTML中,當瀏覽器視窗關閉時執行腳本的詳細內容。更多資訊請關注PHP中文網其他相關文章!