Javascript Javascript 2019-08-28 Source Edit History Mutation Observer 잘 쓰이는 코드 기록 카탈로그 1. Mutation Observer 코드1.1. 나중에, 이걸 써서 프로젝트를 다시 해보자 Mutation Observer 코드12345678910111213141516171819202122const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { console.log(mutation) })})observer.observe(document.querySelector(`#div-exam`), { attributes: true, childList: true, characterData: true, subtree: true || null, attributeOldValue: true || null, characterDataOldValue: true || null,})document.querySelector(`#attr`).addEventListener(`click`, () => { target.setAttribute(`class`, `attr`)})document.querySelector(`#child`).addEventListener(`click`, () => { document.querySelector(`#div-exam`).textContent = `changed!`}) 나중에, 이걸 써서 프로젝트를 다시 해보자