html5监控某个dom变化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html5监控某个dom变化相关的知识,希望对你有一定的参考价值。

 var targetSecondNode = $(".secondList")[0];//要监控的dom对象
    var obSecondServer = new MutationObserver(function (mutations) {
       //dom变化回调的函数
$(".secondList .item-list div:first").addClass("active"); $(".secondList .item-list div:first").click(); }); obSecondServer.observe(targetSecondNode, { attributes: true, childList: true, subtree: true });

 

以上是关于html5监控某个dom变化的主要内容,如果未能解决你的问题,请参考以下文章

JQuery如何监听一个DIV宽高的变化?

检测/监控 DOM 变化的最有效方法?

java利用WatchService实时监控某个目录下的文件变化并按行解析(注:附源代码)

前端开发常用js代码片段

jQuery 选择器可以与 DOM 变异观察者一起使用吗?

前端开发中最常用的JS代码片段