1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<html> <head> <script> window.addEventListener("beforeunload", function (event) { event.preventDefault(); }); </script> </head> <body> <input type="text" /> <a href="default.html" target="_top">Click</a> </body> </html>