When are MutationObserver callbacks fired?

后端 未结 2 620
一向
一向 2020-12-08 09:49

I know that MutationObservers callbacks may get called sometime after the DOM change. But the question is: What is the timing of these callbacks? Do the callbacks enter the

2条回答
  •  伪装坚强ぢ
    2020-12-08 10:02

    I'm going to answer my own question two years later according to the updated DOM spec from WHATWG.

    As shown in the spec:

    To queue a mutation observer compound microtask, run these steps:

    1. If mutation observer compound microtask queued flag is set, terminate these steps.
    2. Set mutation observer compound microtask queued flag.
    3. Queue a compound microtask to notify mutation observers.

    While "Queuing a compound microtask" links to a section in the HTML spec explaining the microtask queue model.

    Therefore, we can conclude that MutationObserver callbacks are fired as microtasks, which are indeed sooner than the task queue tasks as suggested by the answer of @Scott Miles above.

    For further understanding of the event loop and processing model, the Event Loop section of the HTML spec would be perfect.

    Personally, I'm glad to see that MutationObservers are part of the standard and have a well-documented and consistent timing model. With MutationObservers supported in most modern browsers, I think they are solid for production use now.

提交回复
热议问题