36

可能重复:
Javascript Object.Watch 适用于所有浏览器?

我刚刚阅读了 Mozilla 的watch() 方法文档。它看起来非常有用。

但是,我找不到 Safari 类似的东西。既不是 Internet Explorer。

您如何管理跨浏览器的可移植性?

4

3 回答 3

68

不久前,我为此创建了一个小object.watch shim。它适用于 IE8、Safari、Chrome、Firefox、Opera 等。

/*
* object.watch v0.0.1: Cross-browser object.watch
*
* By Elijah Grey, http://eligrey.com
*
* A shim that partially implements object.watch and object.unwatch
* in browsers that have accessor support.
*
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/

// object.watch
if (!Object.prototype.watch)
    Object.prototype.watch = function (prop, handler) {
        var oldval = this[prop], newval = oldval,
        getter = function () {
            return newval;
        },
        setter = function (val) {
            oldval = newval;
            return newval = handler.call(this, prop, oldval, val);
        };
        if (delete this[prop]) { // can't watch constants
            if (Object.defineProperty) // ECMAScript 5
                Object.defineProperty(this, prop, {
                    get: getter,
                    set: setter
                });
            else if (Object.prototype.__defineGetter__ && Object.prototype.__defineSetter__) { // legacy
                Object.prototype.__defineGetter__.call(this, prop, getter);
                Object.prototype.__defineSetter__.call(this, prop, setter);
            }
        }
    };

// object.unwatch
if (!Object.prototype.unwatch)
    Object.prototype.unwatch = function (prop) {
        var val = this[prop];
        delete this[prop]; // remove accessors
        this[prop] = val;
    };
于 2009-08-13T02:12:11.350 回答
2

不幸的是,这不是一个可移植的解决方案。据我所知,IE 没有这样的东西,但如果有的话那就太棒了

于 2009-08-13T01:58:21.757 回答
-4

您可能可以通过覆盖方法和变量来实现自己的通知系统。虽然我不认为它那么重要,但我不知道你打算用这样的系统做什么。

于 2009-08-13T02:02:11.470 回答