监听元素的变化

发布时间:2024年01月20日
 handleResize() {
            // let MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver
            // let element = document.querySelector('.resize-element')
            // console.log(
            //     'elemet',element
            // );
            // this.observer = new MutationObserver((mutationList) => {
            // for(let mutation of mutationList) {
            //     console.log('mutation.target',mutation);
            //     console.log('变化了嘛', mutation.target.clientHeight)
            //     this.resizeHeight = mutation.target.clientHeight - 40
            // }
            // let width = getComputedStyle(element).getPropertyValue('width')
            // let height = getComputedStyle(element).getPropertyValue('height')
            // if(width === this.recordOldValue.width && height === this.recordOldValue.height) return
            //     this.recordOldValue = {
            //         width,
            //         height
            //         }
            //     this.firedNum += 1
            //     })
            //     this.observer.observe(element, {
            //         attributes: true,
            //         attributeFilter: ['style'],
            //         attributeOldValue: true
            //     })
        },

文章来源:https://blog.csdn.net/weixin_45776308/article/details/135700917
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。