我试图通过浏览器reflow-events来了解代码的哪些部分是最昂贵的代码。当必须(重新)绘制到屏幕上时,例如当将新元素添加到DOM时,会发生回流。
有没有办法在/中使用Javascript来监听这些事件,以便进一步分析?
答案 0 :(得分:5)
我认为解决方案是使用DOM MutationObserver类。 正如文件所指出的那样:
它被设计为DOM3 Events规范中定义的Mutation Events的替代品。 Api Docs
网站上的示例非常自我解释
// select the target node
var target = document.querySelector('#some-id');
// create an observer instance
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
console.log(mutation.type);
});
});
// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true };
// pass in the target node, as well as the observer options
observer.observe(target, config);
// later, you can stop observing
observer.disconnect();