Computer >> Máy Tính >  >> Lập trình >> Javascript

Việc sử dụng sự kiện onbeforeunload trong JavaScript là gì?

Nếu bạn muốn kích hoạt một sự kiện trước khi tài liệu được tải, hãy sử dụng onbeforeunload sự kiện.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách triển khai sự kiện onbeforeunload trong JavaScript.

<!DOCTYPE html>
<html>
   <body onbeforeunload="return myFunction()">

      <a href="https://www.qries.com">Click to open Qries</a>
      <script>
         function myFunction() {
            return "Working with onbeforeunload event";
         }
      </script>
   </body>
</html>