摘要:
通过mootools 获取 background-position 的值时,在 IE 中返回 undefined通过测试,发现无论是写在样式表中,还是写在元素style属性里,在 IE ( 6, 7, 8 ) 里获取background-position的值时,均返回undefined。自己增加了mootools 的扩展1 Element.implement({2 getBackgroundPosition : function() {3 if (Browser.Engine.trident) {4 return this.getStyle('backgroundPositionX 阅读全文