在“独立”对象上使用 Object.watch()多变的?
也许我错过了一些主要的东西,但是有没有办法在独立于对象而存在的变量上使用 Object.watch()
?
我对 JS 有点陌生,找不到我的变量附加到的任何类型的全局对象。
(此外,仅使用它进行调试,因此仅在 Mozilla 浏览器中支持它这一事实并不是问题。)
Perhaps I'm missing something major, but is there a way to use Object.watch()
on variables that exist independent of objects?
I'm a bit new to JS, and couldn't find any kind of global object that my variable was attached to.
(Also, just using this for debugging, so the fact that it's only supported in Mozilla browsers isn't a problem.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
浏览器中的全局作用域实际上是
window
对象,因此如果您的变量是全局变量,它实际上附加到window
对象。因此,您可以通过window.variableName
以及简单的variableName
来访问它。因此你应该能够说:The global scope in a browser is actually the
window
object, so if your variable is a global variable, it's actually attached to thewindow
object. So you can access it aswindow.variableName
just as well as simplyvariableName
. And thus you should be able to say: