我正在开发一个小型的JavaScript模板引擎,当模型发生变化时,我有两种可能的方法来处理DOM的更新:
-
在执行此操作之前,请检查是否确实需要 DOM 更新。这样做的好处是不会冒不必要的更新风险,但我在跟踪旧值上浪费了空间。
if (oldValue !== newValue) { element.textContent = newValue; }
-
只管去做。这显然更简单,但恐怕我会无缘无故地触发重绘和重排。
element.textContent = newValue;
请注意,我也通过调用 setAttribute
、 addClass
和 removeClass
以及设置style[prop] = value
来操作 DOM。
所以,我的问题是:现代浏览器是否足够聪明,可以注意到实际上没有任何变化,因此不会运行重排或重绘,如果你触摸 DOM 而没有实际改变任何东西?
使用 MutationObserver
api,您可以检测DOM
更改。
下面是一个示例,可用于查看浏览器是否根据所需内容触发Dom Changed
事件。
这里有一个 jquery 的text('...')
和一个el.textContent
(不使用 jquery)。
$(document).ready(function() {
$('#btn1').click(function() {
console.log('text changed - jquery');
$('#a1').text('text 1');
});
$('#btn2').click(function() {
console.log('text changed - textContent');
$('#a1')[0].textContent = $('#a1')[0].textContent
});
$('#btn3').click(function() {
console.log('class changed');
$('#a1').attr('class', 'cls' + Math.floor(Math.random() * 10));
});
});
var target = $('#a1')[0];
// create an observer instance
var observer = new MutationObserver(function(mutations) {
var changed = false;
mutations.forEach(function(mutation) {
// You can check the actual changes here
});
console.log('Dom Changed');
});
// 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);
.cls1 {
border: 1px solid red;
}
.cls2 {
border: 1px solid pink;
}
.cls3 {
border: 1px solid cyan;
}
.cls4 {
border: 1px solid darkgreen;
}
.cls5 {
border: 1px solid orange;
}
.cls6 {
border: 1px solid darkred;
}
.cls7 {
border: 1px solid black;
}
.cls8 {
border: 1px solid yellow;
}
.cls9 {
border: 1px solid blue;
}
.cls10 {
border: 1px solid green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="a1" class="cls1">text 1</div>
<button id="btn1">Change text - jquery (keep original)</button><br />
<button id="btn2">Change text - textContent (keep original)</button><br />
<button id="btn3">Change class (real change)</button>
- 在Chrome 55中,只有
setAttribute()
和jQuerytext()
触发了Dom Change
事件。 - 在 Firefox 50 中,一切都触发了
Dom Change
事件。 - 在 Edge 38 中,一切都触发了
Dom Change
事件。