2017-04-25 23:14:34 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
2020-05-26 13:21:38 +00:00
|
|
|
function installBeforeUnload(removeAfterNTimes) {
|
|
|
|
let count = 0
|
2020-04-16 22:22:39 +00:00
|
|
|
window.addEventListener('beforeunload', function handler(e) {
|
2020-05-26 13:21:38 +00:00
|
|
|
setTimeout(() => console.log('beforeunload'))
|
|
|
|
if (++count <= removeAfterNTimes) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.returnValue = '';
|
|
|
|
}
|
2020-04-16 22:22:39 +00:00
|
|
|
})
|
2020-06-02 02:32:39 +00:00
|
|
|
console.log('installed')
|
2017-04-25 23:14:34 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|