getComputedStyle、currentStyle 和getPropertyValue

getComputedStyle和currentStyle都是获取对象的css样式集合,currentStyle只支持IE,标准浏览器可使用getComputedStyle.

使用方法:

  element.currentStyle

  window.getComputedStyle(element, null)

要获取单个样式如"margin-left",使用方法:

  element.currentStyle["marginLeft"]

  window.getComputedStyle(element, null)["marginLeft"]

注意,这里单词分割不以"-"为分隔符,而是除第一个单词外其他单词首字母大写.

getPropertyValue需配合getComputedStyle使用,使用方法:

  window.getComputedStyle(element, null).getPropertyValue("margin-left");

作用等同于window.getComputedStyle(element, null)["marginLeft"],不同的是,这里的参数是css样式里的书写格式,单词与单词之间使用"-"分割

posted on   Lecaf  阅读(1877)  评论(0编辑  收藏  举报

< 2011年9月 >
28 29 30 31 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示