8

有没有办法在CSSStyleDeclaration对象发生更改时得到通知,就像 DOM 更改一样,可以使用 DomAttrModified 等事件进行跟踪?

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

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

有什么方法可以在不更改上面的代码片段的情况下获得有关 JS 处理程序中更改的通知?

提前致谢!

4

1 回答 1

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)")
于 2013-05-23T08:43:45.663 回答