<script type="text/javascript">
window.addEventListener('beforeunload', (event) => {
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = '';
localStorage.clear();
});
</script>
994

被折叠的 条评论
为什么被折叠?



