私のテストでは、JavaScript のreload()
関数はその後に続くコードの実行を妨げているように見えます...しかし、これが100%の確率で正しいことを誰かが確認できますか?
ユーザーが派手なトリックなしで JavaScript を有効にしていると仮定します。
あれは:
<head>
<!-- Comes first in the <head>, and could be included via an external .js file. -->
<script type="text/javascript">
window.location.reload(true);
</script>
<!-- ... -->
</head>
<body>
<!-- ... -->
<!-- Later in the code. This could be js, html... or anything else. -->
<script type="text/javascript">
alert('this should NEVER display... regardless of OS/browser');
</script>
<!-- ... -->
<span class="you-cant-see-me">secret!</span>
<!-- ... -->
</body>