当我使用 Firefox 上的后退按钮到达以前访问过的页面时,该页面上的脚本将不会再次运行。
第二次查看页面时,是否有任何修复/解决方法可以让脚本再次执行?
请注意,我已经在 Google Chrome 和 Internet Explorer 上测试了相同的页面,并且它们按预期工作。
以下是我用来测试问题的文件和步骤:
(导航到 0.html,点击进入 1.html,返回按钮)
0.html
<html><body>
<script>
window.onload = function() { alert('window.onload alert'); };
alert('inline alert');
</script>
<a href="1.html">Click Me!</a>
</body></html>
1.html
<html><body>
<p>Go BACK!</p>
</body></html>