0

我已经尝试过element.style.marginLeft,但它在某些继承样式的情况下不起作用(只返回一个空字符串)。此外,getComputedStyle这不是一个选项,因为我想在这种情况下获得“自动”而不是计算值。对于 IE,currentStyle适用于我,但在其他浏览器中不可用。

我必须只使用普通的 js,没有框架,而且我需要它是跨浏览器的。

4

1 回答 1

1

使用jQuery!

简单的语法:

x = #("#idName").css("cssPropertyName");
x = #(".classdName").css("cssPropertyName");
x = #("elementName").css("cssPropertyName");

:)

于 2012-12-05T08:56:28.273 回答