一旦控制权离开脚本,JavaScript 静态变量是否仍然存在?
我有一个关于 JavaScript 中静态变量的问题。它们仅在脚本范围内持续吗?我的意思是,如果控制离开脚本并返回到 html 代码,静态变量是否仍然存在?
I have a question about static variables in JavaScript. Do they only last during the scope of the script? What I mean is what if control leaves the script and goes back to the html code, are the static variables still there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设你的意思是全局变量而不是静态变量。全局变量在全局文档范围内声明。它们可以从所有方法(函数)访问,并且当您从函数的代码块内修改它们的值时,该值仍然存在,因为您正在修改全局变量。
例如:
您将得到:
来自alert_global() 的“global: 0”警报
local_inc() 中的“global: 1”警报
local_inc() 中的“local: 2”警报
来自alert_global()的“global: 1”警报
I assume that you mean global instead of static variables. Global variables are declared in the global document scope. They are accessible from all methods (functions) and when you modify their value from within a function's code block, the value persists, since you are modifying the global variable.
For example:
You would get:
alert of "global: 0" from alert_global()
alert of "global: 1" from local_inc()
alert of "local: 2" from local_inc()
alert of "global: 1" from alert_global()