Home > Web Front-end > JS Tutorial > body text

How to Implement Confirmation Before Page Exit with JavaScript?

Patricia Arquette
Release: 2024-11-12 22:21:02
Original
197 people have browsed it

How to Implement Confirmation Before Page Exit with JavaScript?

JavaScript Confirmation before Page Exit

To prevent users from accidentally leaving a page without confirmation, you can implement a confirmation window using JavaScript.

Using onbeforeunload

The onbeforeunload event fires when a user is about to leave the page. Code placed in this event listener will display a confirmation window to the user. If the user selects "OK," it indicates their intent to leave, while selecting "Cancel" will interrupt the exit process. You cannot redirect the user if they select to stay on the page.

window.onbeforeunload = function() {
  return 'Are you sure you want to leave?';
};
Copy after login

Using jQuery

jQuery provides a simplified method to handle the beforeunload event:

$(window).bind('beforeunload', function(){
  return 'Are you sure you want to leave?';
});
Copy after login

Using onunload

While the onunload event is often used for cleanup tasks before a page is unloaded, it cannot redirect the user. However, it can still be useful for displaying a farewell message or warning. Note that Chrome 14 and later block alerts within onunload.

window.onunload = function() {
    alert('Bye.');
}
Copy after login

jQuery Implementation

$(window).unload(function(){
  alert('Bye.');
});
Copy after login

The above is the detailed content of How to Implement Confirmation Before Page Exit with JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template