Object.prototype.unwatch() - JavaScript 编辑
警告 : 请尽量避免使用 unwatch() 和 watch()
. 这两个方法仅在 Gecko 中实现 , 并且他们过去主要作调试用. 另外, 使用 watchpoints 对性能有一系列的副面影响 ,特别是当使用全局对象,如 window
. 你应该使用 setters and getters 或 proxies 来替代. 查阅 Browser compatibility 以获取更多信息.
unwatch()
删除一个 watch()
设置的 watchpoint.
语法
obj.unwatch(prop)
参数
prop
- 想要停止监视的对象的属性名
描述
JavaScript调试器具有类似的功能,以及其他调试选项。有关调试器的信息 Venkman.
默认地, 这个方法 被每一个 Object
的子类继承
Note: The reason for unwatch()
to take the property name prop as its only parameter is due to the "single handler allowing" behavior of the watch()
method.
例子
See watch()
.
说明
Not part of any specifications. Implemented in JavaScript 1.2.
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 未实现 | (Yes) | 未实现 | 未实现 | 未实现 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 未实现 | 未实现 | (Yes) | 未实现 | 未实现 | 未实现 |
Compatibility notes
- 从 Firefox 23 (bug 903332) 开始, 在
Document
对象上调用unwatch()
抛出TypeError
. This regression has been fixed with Firefox 27.
相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论