js检测dom元素的变化

    new MutationObserver((mutations, observer) => {
    const el = document.querySelector("span.Title-followNum");
    if (el) {
        observer.disconnect()
        new MutationObserver((mutations, observer) => {
            debugger
        }).observe(el, {
            childList: true,
            subtree: true
        })
    }
}).observe(document, {
    childList: true,
    subtree: true
})

本文作者:公众号python学习开发

本文链接:https://www.cnblogs.com/c-x-a/p/14700230.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   公众号python学习开发  阅读(231)  评论(0编辑  收藏  举报
历史上的今天:
2018-04-25 python搭建区块链
2018-04-25 流畅的python第九章笔记 python风格的python
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起