浏览器中的后退/前进会改变 javascript 变量吗?
<script type="text/javascript>
var x = 0; //this occurs in the beginning of the page.
$("#button").onclick{
x = 1;
}
</script>
假设变量“x”更改为 1。然后用户单击一个链接。当用户点击“后退”时,x会是0还是1?
<script type="text/javascript>
var x = 0; //this occurs in the beginning of the page.
$("#button").onclick{
x = 1;
}
</script>
Let's say the variable "x" changes to 1. Then the user clicks a link. When the user clicks "back", will x be 0 or 1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如另一个问题中详细介绍的,这个问题的真正答案这取决于浏览器。
在 Firefox 和 Opera 中,如果单击 Set x,单击链接,然后按下后退按钮,下面的页面将保留
1
的状态。但是,在 Chrome 和 IE6 中,页面将重新加载,并且x
的值为0
。As detailed in another question, the real answer to this question is it depends on the browser.
In Firefox and Opera, the below page will preserve the state of
1
if Set x is clicked, the link is clicked, and then the back button is pressed. However, in Chrome and IE6 the page will be reloaded andx
will have the value of0
.它将是0
。浏览器不会缓存页面加载之间 Javascript 变量的状态。更新
在 Firefox 等浏览器中情况并非如此。请参阅特雷的回答。
It will be0
. The browser does not cache the state of Javascript variables between page loads.Update
This is not the case in browsers such as Firefox. Please see Trey's answer.