首页 > 代码库 > 获取CSS样式

获取CSS样式

 行内样式:

document.getElementById("id").style.property="值"


非行内样式:
function(obj,attr){
  if(obj.currentStyle){
  return obj.currentStyle
  }
  else{
   return getComputedStyle(obj,false)[attr]
  } 
}

具体attr参考可http://www.w3school.com.cn/jsref/dom_obj_style.asp 

获取CSS样式