Что бы я указал элемент для этого детектора мутаций? - PullRequest
0 голосов
/ 28 апреля 2020
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;

var observer = new MutationObserver(function(mutations, observer) {
    // fired when a mutation occurs
    console.log(mutations, observer);
    // ...
});

// define what element should be observed by the observer
// and what types of mutations trigger the callback
observer.observe(y, {
  subtree: true,
  attributes: true
  childList: true
  characterData: true
  //...
});

Это мой код в настоящее время, но я не понимаю, что будет go вместо "y", когда я пытаюсь обнаружить изменения в элементе html, например:

<div class="yellow-text">
  <p><b>Text</b></p>
</div>
...