can I monitor changes on an HTML DIV?

前端 未结 1 881
南笙
南笙 2021-01-14 05:07

I am working on a complex web app.

In it, there is a div which gets updated. It prints something like

[1/4]
[2/4]
[3/4]
[4/4]

Prob

相关标签:
1条回答
  • 2021-01-14 06:11

    You might be able to use Mutation Events to do this if the browsers you are targeting support them. Here is a small jsFiddle demo that should work in a browser that supports the Mutation Events. I tested this in Chrome 23

    JavaScript:

    var observable = document.getElementById('observable');
    
    observable.addEventListener('DOMSubtreeModified', function(ev) {
      console.log(ev.target.nodeValue, ev.timeStamp);
    }, false);
    
    var i = 0;
    
    observable.addEventListener('click', function(ev) {
        observable.innerHTML = ++i;
        return false;
    }, false);​
    

    HTML:

    ​<div id="observable">click me and look at the console</div>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
    

    CSS:

    ​#observable {
        background-color:lightblue;
        height:42px;
    }​
    
    0 讨论(0)
提交回复
热议问题