当用户离开页面时,我想让他们确认他们正在离开页面:
window.onbeforeunload = function(){
if($('.fancy-blue-button.check-toggle').text() == 'Check In Task'){
return 'Note that this task will automatically be checked back in once you leave this page.';
}
};
$(window).unload(function() {
alert('Handler for .unload() called.');
});
第一个,onbeforeunload
工作,第二个,unload
似乎没有做任何事情。