1

我需要一种方法来识别对象(DOMNode 类型)的属性已发生更改(或者被创建或删除,可选)。

我有一个 INPUT 元素,必须在.value修改属性时通知。问题是没有attr 定义,我可以使用 MutationObserver,是的,属性定义 ( input.value) 并且它不会触发观察者。

我可以使用可用的最新功能,因为我不会使用 IE ( bwhahahah )。

编辑#1

我进行此测试以显示:

  1. 手动触发有效,但我不能使用/期望这个;
  2. 自动触发不起作用,我喜欢这样;
  3. __defineSetter__工作得很好,除了我不能在不停止“默认传播”的情况下使用它。

如果有什么办法可以让__defineSetter__这件事一直持续到最后,就可以破案了。

4

1 回答 1

1

您并没有真正说明您是在尝试跟踪用户对输入元素的更改还是程序更改。对于新的浏览器,您可以监视input事件,它会告诉您输入字段的值何时被用户控制更改。除了挂钩所有可能更改它的代码以添加您自己的通知系统可能已应用更改之外,没有跨浏览器方法可以判断字段的值是否已以编程方式更改。

我不久前编写了这个跨浏览器函数来监视所有不同形式的用户对所有浏览器输入字段的更改。这段代码恰好是 jQuery 方法的形式,但是可以很容易地将逻辑修改为纯 javascript。此代码检查是否支持新事件。如果是这样,它会使用它们。如果没有,它会挂接许多其他事件来尝试捕获用户更改字段的所有可能方式(拖放、复制/粘贴、键入等)。

(function($) {

    var isIE = false;
    // conditional compilation which tells us if this is IE
    /*@cc_on
    isIE = true;
    @*/

    // Events to monitor if 'input' event is not supported
    // The boolean value is whether we have to 
    // re-check after the event with a setTimeout()
    var events = [
        "keyup", false,
        "blur", false,
        "focus", false,
        "drop", true,
        "change", false,
        "input", false,
        "textInput", false,
        "paste", true,
        "cut", true,
        "copy", true,
        "contextmenu", true
    ];
    // Test if the input event is supported
    // It's too buggy in IE so we never rely on it in IE
    if (!isIE) {
        var el = document.createElement("input");
        var gotInput = ("oninput" in el);
        if  (!gotInput) {
            el.setAttribute("oninput", 'return;');
            gotInput = typeof el["oninput"] == 'function';
        }
        el = null;
        // if 'input' event is supported, then use a smaller
        // set of events
        if (gotInput) {
            events = [
                "input", false,
                "textInput", false
            ];
        }
    }

    $.fn.userChange = function(fn, data) {
        function checkNotify(e, delay) {
            var self = this;
            var this$ = $(this);

            if (this.value !== this$.data("priorValue")) {
                this$.data("priorValue", this.value);
                fn.call(this, e, data);
            } else if (delay) {
                // The actual data change happens aftersome events
                // so we queue a check for after
                // We need a copy of e for setTimeout() because the real e
                // may be overwritten before the setTimeout() fires
                var eCopy = $.extend({}, e);
                setTimeout(function() {checkNotify.call(self, eCopy, false)}, 1);
            }
        }

        // hook up event handlers for each item in this jQuery object
        // and remember initial value
        this.each(function() {
            var this$ = $(this).data("priorValue", this.value);
            for (var i = 0; i < events.length; i+=2) {
                (function(i) {
                    this$.on(events[i], function(e) {
                        checkNotify.call(this, e, events[i+1]);
                    });
                })(i);
            }
        });
    }
})(jQuery);    
于 2013-06-09T20:23:21.080 回答