实现MutationObserver代替DOMSubtreeModified

时间:2017-02-01 02:51:22

标签: javascript jquery dom mutation-observers

我有一个select[multiple],我在我的网页上发布了一个类custom-multiselect,我正在抓住DOMSubtreeModified事件,如下所示:

HTML:

<select class="custom-multiselect"></select>

JQuery的:

$('.custom-multiselect').each(function (i, select) {
    var sel = this;
    adjustHeight(sel); //Custom function
    //Binding DOMSubtreeModified to catch if the select list gets modified by the user
    $(sel).on('DOMSubtreeModified', function () {            
        adjustHeight(sel);
    });
    //For Internet Explorer
    $(sel).on('propertychange', function () {
        adjustHeight(sel);
    });
});

这种方法完美无瑕。我希望将DOMSubtreeModified函数转换为MutationObserver,因为DOMSubtreeModified已弃用。

所以我做了这样的事情:

var observer = new MutationObserver(function (mutation) {
    mutation.forEach(function (m) {
        if (m.type == 'subtree') {
            adjustHeight(this);//Can I use m.target here?
        }
    });
});
observer.observe(document.querySelector('select.custom-multiselect'), {
    subtree: true
});

但我最终得到错误

  

TypeError:无法转换表达式以返回指定的类型。

如何将DOMSubtreeModified事件转换为MutationObserver

1 个答案:

答案 0 :(得分:6)

  • 将代码放在旧DOM事件的位置,并使用sel变量作为观察目标;
  • 在MutationObserver中使用childList选项,因为subtree没有指定要查找的内容;
  • 由于您只订阅了一种类型,因此无需检查突变。

$('.custom-multiselect').each(function() {
    var sel = this;
    adjustHeight(sel);

    new MutationObserver(function() {
        adjustHeight(sel);
    }).observe(sel, {childList: true, subtree: true});
});

或者,如果您因某种原因喜欢.bind

new MutationObserver(adjustHeight.bind(null, sel))
    .observe(sel, {childList: true, subtree: true});