Spaces:
Running
Running
<script> | |
history.replaceState(null, null, null); | |
document.addEventListener('DOMContentLoaded', function() { | |
// 履歴があるか確認 | |
if (window.history.length > 1) { | |
// 履歴がある場合はGoogleにリダイレクト | |
location.replace('https://google.com'); | |
} else { | |
// 履歴がない場合はwindow.closeを試行 | |
if (window.close) { | |
window.close(); | |
} else { | |
// 万一のためリダイレクト | |
location.replace('https://google.com'); | |
} | |
} | |
}); | |
</script> |