web-dev-qa-db-ja.com

setIntervalなしでクラスの変更を検出する

プログラムで追加のクラスが追加されたdivがあります。このsetInterval実装を使用せずにクラス名の変更を検出するにはどうすればよいですか?

setInterval(function() {
    var elem = document.getElementsByClassName('original')[0];
    if (elem.classList.contains("added")) { detected(); }
}, 5500);

MutationObserver?

19
David

mutation observer を使用できます。それはかなり 広くサポートされています 今日です。

var e = document.getElementById('test')
var observer = new MutationObserver(function (event) {
  console.log(event)   
})

observer.observe(e, {
  attributes: true, 
  attributeFilter: ['class'],
  childList: false, 
  characterData: false
})

setTimeout(function () {
  e.className = 'hello'
}, 1000)
<div id="test">
</div>
20
motanelu