检测JS中CSSStyleDeclaration对象的变化

时间:2013-05-23 08:13:35

标签: javascript html css dom

是否有任何方法可以在CSSStyleDeclaration对象发生更改时获得通知,就像DOM更改一样,可以使用DomAttrModified等事件进行跟踪?

因此,如果有一些JS代码,例如

document.styleSheets[0].rules[0].style.backgroundImage = "url(myimage.png)";

有没有办法在不改变上面的代码片段的情况下获得JS处理程序中的更改通知?

提前致谢!

1 个答案:

答案 0 :(得分:1)

我认为本身没有任何可用的东西。

根据您的使用情况,您可以轻松构建包装器,以便您的代码使用包装器并通知侦听器更改了某些内容。

像这样基本的东西:

function Wrapper() {
    var listeners = []

    return {
        addListener: function(fn) {
            listeners.push(fn)
        },
        removeListener: function(fn) {
            listeners.splice(listeners.indexOf(fn), 1) // indexOf needs shim in IE<9
        },
        set: function(prop, val) {
            prop = val
            // forEach needs shim in IE<9, or you could use a plain "for" loop
            listeners.forEach(call)

            function call(fn) {
                fn(prop, val)
            })
        }
    }
}

您可以这样使用:

var wrapper = Wrapper()
wrapper.addListener(function(prop, val) {
    // When you'll change a prop, it'll get there and you'll see
    // which property is changed to which value
})

// This sets the property and notifies all the listeners
wrapper.set(document.styleSheets[0].rules[0].style.backgroundImage, "url(myimage.png)")