在“独立”对象上使用 Object.watch()多变的?

发布于 2024-11-29 11:36:26 字数 166 浏览 1 评论 0原文

也许我错过了一些主要的东西,但是有没有办法在独立于对象而存在的变量上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时浪漫 2024-12-06 11:36:27

浏览器中的全局作用域实际上是 window 对象,因此如果您的变量是全局变量,它实际上附加到 window 对象。因此,您可以通过 window.variableName 以及简单的 variableName 来访问它。因此你应该能够说:

window.watch('variableName', callback);

The global scope in a browser is actually the window object, so if your variable is a global variable, it's actually attached to the window object. So you can access it as window.variableName just as well as simply variableName. And thus you should be able to say:

window.watch('variableName', callback);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文