是否有一种简单的跨浏览器方法来获取 PrototypeJS 中元素的计算样式,而无需检查 document.defaultView... 和其他属性?...所以代码看起来像
var elt = $$('.xyz')[k],
border = elt.getComputedStyle('border-bottom-width')
PrototypeJs 提供了返回计算getDimensions
尺寸的、-Width
和-Height
方法,但无法获取其他计算样式,如边框、背景等。
我找到了几个独立的 getComputedStyle实现,但也许有一个 PrototypeJS 的补丁/插件可以做到这一点?