我需要一种方法来识别对象(DOMNode类型)的属性已经过更改(或者已创建或删除,可选)。
我有一个INPUT元素,必须在修改属性.value
时收到通知。问题是不有一个attr定义,我可以使用MutationObserver,是的,属性定义(input.value
)并且它不会触发观察者。
我可以使用最新的功能,因为我不会使用IE( bwhahahah )。
编辑#1
我让this test显示:
__defineSetter__
工作得非常好,但我不能在不停止“默认传播”的情况下使用它。如果有任何方法允许__defineSetter__
继续到最后,将解决此案。
答案 0 :(得分: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);