A very stripped down example here
代码:
function changeBackground() {
var testDiv = Ext.get("test");
var allStyleDivs = testDiv.select("*[style*='background-color'], *[style*='BACKGROUND-COLOR']");
allStyleDivs.each(replaceBackground);
}
function replaceBackground(element) {
element.setStyle('background-color','blue');
}
在FF,IE8,Chrome这个页面工作正常。 IE7说 Object不支持这个属性或方法。 什么是dealy哟?