码迷,mamicode.com
首页 > Web开发 > 详细

获取CSS样式

时间:2017-03-12 21:49:09      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:school   turn   www   .property   asp   etc   cti   function   ntb   

 行内样式:

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样式

标签:school   turn   www   .property   asp   etc   cti   function   ntb   

原文地址:http://www.cnblogs.com/YutaoZhou/p/6539279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!