当前位置: 代码迷 >> 综合 >> 封装兼容性方法getStyle(elem,prop)获取元素的css属性
  详细解决方案

封装兼容性方法getStyle(elem,prop)获取元素的css属性

热度:50   发布时间:2023-11-20 22:12:38.0
Element.prototype.getStyle=function(prop){
    if(window.getComputedStyle){
    return window.getComputedStyle(this,null)[prop]}else{
    return this.currentStyle[prop];}}
  相关解决方案