标签:nbsp put 样式 color 兼容性 get return style window
1:设计元素的样式:el.style.color="red"||el.style["color"]="red"
获取元素的样式:el.style.color||el.style["color"](只能获取直接样式的
值)
获取内部样式或外部样式的值:
function getStyle(ele,style){
return ele.currentStyle?obj.currentStyle
[style]:window.getComputedStyle(ele)[style];
};
标签:nbsp put 样式 color 兼容性 get return style window
原文地址:http://www.cnblogs.com/huangshikun/p/6526949.html