Does touching the DOM trigger a reflow and repaint even if nothing changes?

前端 未结 1 702
别跟我提以往
别跟我提以往 2021-02-10 05:14

I am working on a small JavaScript template engine, and I have two possible approaches for dealing with updates to the DOM when the model changes:

  1. Check if the

1条回答
  •  后悔当初
    2021-02-10 05:30

    Using the MutationObserver api you can detect DOM changes.

    Here is an example you can use to see if a browser triggers the Dom Changed event, based on what you want.

    You have here both a text('...') by jquery and an el.textContent (that doesn't use 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;
    }
    
    
    text 1


    • In Chrome 55, only setAttribute() and jQuery text() triggered the Dom Change event.
    • In Firefox 50, everything triggered the Dom Change event.
    • In Edge 38, everything triggered the Dom Change event.

    0 讨论(0)
提交回复
热议问题