Spaces:
Running
Running
File size: 683 Bytes
a0b952f 3808162 77e2ea7 a0b952f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<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> |