在IE7上使用ExtJS选择Style属性不起作用

时间:2010-09-11 01:45:55

标签: extjs

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哟?

1 个答案:

答案 0 :(得分:1)

在ExtJs论坛上查看此post