我想使用onbeforeunload将用户导航到特定页面。有没有办法实现它?
window.onbeforeunload = function() {
//return 'The changes you made will be lost if you navigate away from this page.';
if (flag) {
navigateTo('index');
else {
navigateTo('list');
}
}
return 'The changes you made will be lost if you navigate away from this page.';
};