码迷,mamicode.com
首页 > Web开发 > 详细

html5监控某个dom变化

时间:2020-04-08 12:00:33      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:code   click   first   addclass   btree   att   fun   htm   html   

 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变化

标签:code   click   first   addclass   btree   att   fun   htm   html   

原文地址:https://www.cnblogs.com/codeDevotee/p/12658735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!