Open huoxiangdong opened 6 years ago
currentStyle
ele.currentStyle["attr"]
getComputedStyle
window.getComputedStyle(ele,null)[attr]
getPropertyValue
currentStyle
: 该属性只兼容IE,不兼容火狐和谷歌ele.currentStyle["attr"]
getComputedStyle
: 该属性是兼容火狐谷歌,不兼容IEwindow.getComputedStyle(ele,null)[attr]